src/HOL/Decision_Procs/Approximation.thy
author haftmann
Sun, 12 Feb 2012 22:10:05 +0100
changeset 46545 69f45ffd5091
parent 45481 cf937a9ce051
child 47108 2a1953f0d20d
permissions -rw-r--r--
tuned
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
     1
(* Author:     Johannes Hoelzl, TU Muenchen
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
     2
   Coercions removed by Dmitriy Traytel *)
30122
1c912a9d8200 standard headers;
wenzelm
parents: 29823
diff changeset
     3
30886
dda08b76fa99 updated official title of contribution by Johannes Hoelzl;
wenzelm
parents: 30549
diff changeset
     4
header {* Prove Real Valued Inequalities by Computation *}
30122
1c912a9d8200 standard headers;
wenzelm
parents: 29823
diff changeset
     5
40892
6f7292b94652 proper theory name (cf. e84f82418e09);
wenzelm
parents: 40881
diff changeset
     6
theory Approximation
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
     7
imports
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
     8
  Complex_Main
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
     9
  "~~/src/HOL/Library/Float"
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
    10
  "~~/src/HOL/Library/Reflection"
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
    11
  "~~/src/HOL/Decision_Procs/Dense_Linear_Order"
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41024
diff changeset
    12
  "~~/src/HOL/Library/Efficient_Nat"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    13
begin
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    14
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    15
section "Horner Scheme"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    16
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    17
subsection {* Define auxiliary helper @{text horner} function *}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    18
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    19
primrec horner :: "(nat \<Rightarrow> nat) \<Rightarrow> (nat \<Rightarrow> nat \<Rightarrow> nat) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> real \<Rightarrow> real" where
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    20
"horner F G 0 i k x       = 0" |
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    21
"horner F G (Suc n) i k x = 1 / k - x * horner F G n (F i) (G i k) x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    22
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    23
lemma horner_schema': fixes x :: real  and a :: "nat \<Rightarrow> real"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    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)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    25
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    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
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
    27
  show ?thesis unfolding setsum_right_distrib shift_pow diff_minus setsum_negf[symmetric] setsum_head_upt_Suc[OF zero_less_Suc]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    28
    setsum_reindex[OF inj_Suc, unfolded comp_def, symmetric, of "\<lambda> n. (-1)^n  *a n * x^n"] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    29
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    30
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    31
lemma horner_schema: fixes f :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat" and F :: "nat \<Rightarrow> nat"
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30968
diff changeset
    32
  assumes f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    33
  shows "horner F G n ((F ^^ j') s) (f j') x = (\<Sum> j = 0..< n. -1 ^ j * (1 / (f (j' + j))) * x ^ j)"
45129
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
    34
proof (induct n arbitrary: j')
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
    35
  case 0
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
    36
  then show ?case by auto
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
    37
next
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    38
  case (Suc n)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    39
  show ?case unfolding horner.simps Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    40
    using horner_schema'[of "\<lambda> j. 1 / (f (j' + j))"] by auto
45129
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
    41
qed
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    42
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    43
lemma horner_bounds':
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    44
  fixes lb :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" and ub :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    45
  assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    46
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    47
  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)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    48
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    49
  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)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    50
  shows "(lb n ((F ^^ j') s) (f j') x) \<le> horner F G n ((F ^^ j') s) (f j') x \<and>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    51
         horner F G n ((F ^^ j') s) (f j') x \<le> (ub n ((F ^^ j') s) (f j') x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    52
  (is "?lb n j' \<le> ?horner n j' \<and> ?horner n j' \<le> ?ub n j'")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    53
proof (induct n arbitrary: j')
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    54
  case 0 thus ?case unfolding lb_0 ub_0 horner.simps by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    55
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    56
  case (Suc n)
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
    57
  have "?lb (Suc n) j' \<le> ?horner (Suc n) j'" unfolding lb_Suc ub_Suc horner.simps real_of_float_sub diff_minus
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    58
  proof (rule add_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    59
    show "(lapprox_rat prec 1 (f j')) \<le> 1 / (f j')" using lapprox_rat[of prec 1  "f j'"] by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    60
    from Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc, THEN conjunct2] `0 \<le> real x`
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    61
    show "- real (x * ub n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x) \<le>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    62
          - (x * horner F G n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x)"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    63
      unfolding real_of_float_mult neg_le_iff_le by (rule mult_left_mono)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    64
  qed
46545
haftmann
parents: 45481
diff changeset
    65
  moreover have "?horner (Suc n) j' \<le> ?ub (Suc n) j'" unfolding ub_Suc horner.simps real_of_float_sub diff_minus
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    66
  proof (rule add_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    67
    show "1 / (f j') \<le> (rapprox_rat prec 1 (f j'))" using rapprox_rat[of 1 "f j'" prec] by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    68
    from Suc[where j'="Suc j'", unfolded funpow.simps comp_def f_Suc, THEN conjunct1] `0 \<le> real x`
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    69
    show "- (x * horner F G n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x) \<le>
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    70
          - real (x * lb n (F ((F ^^ j') s)) (G ((F ^^ j') s) (f j')) x)"
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    71
      unfolding real_of_float_mult neg_le_iff_le by (rule mult_left_mono)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    72
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    73
  ultimately show ?case by blast
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    74
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    75
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    76
subsection "Theorems for floating point functions implementing the horner scheme"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    77
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    78
text {*
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    79
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    80
Here @{term_type "f :: nat \<Rightarrow> nat"} is the sequence defining the Taylor series, the coefficients are
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    81
all alternating and reciprocs. We use @{term G} and @{term F} to describe the computation of @{term f}.
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    82
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    83
*}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    84
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    85
lemma horner_bounds: fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    86
  assumes "0 \<le> real x" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    87
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    88
  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)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    89
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    90
  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)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    91
  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
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
    92
    "(\<Sum>j=0..<n. -1 ^ j * (1 / (f (j' + j))) * (x ^ j)) \<le> (ub n ((F ^^ j') s) (f j') x)" (is "?ub")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    93
proof -
31809
hoelzl
parents: 31790
diff changeset
    94
  have "?lb  \<and> ?ub"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
    95
    using horner_bounds'[where lb=lb, OF `0 \<le> real x` f_Suc lb_0 lb_Suc ub_0 ub_Suc]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    96
    unfolding horner_schema[where f=f, OF f_Suc] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    97
  thus "?lb" and "?ub" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    98
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
    99
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   100
lemma horner_bounds_nonpos: fixes F :: "nat \<Rightarrow> nat" and G :: "nat \<Rightarrow> nat \<Rightarrow> nat"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   101
  assumes "real x \<le> 0" and f_Suc: "\<And>n. f (Suc n) = G ((F ^^ n) s) (f n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   102
  and lb_0: "\<And> i k x. lb 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   103
  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)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   104
  and ub_0: "\<And> i k x. ub 0 i k x = 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   105
  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)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   106
  shows "(lb n ((F ^^ j') s) (f j') x) \<le> (\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j)" (is "?lb") and
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   107
    "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) \<le> (ub n ((F ^^ j') s) (f j') x)" (is "?ub")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   108
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   109
  { fix x y z :: float have "x - y * z = x + - y * z"
46545
haftmann
parents: 45481
diff changeset
   110
      by (cases x, cases y, cases z, simp add: plus_float.simps minus_float_def times_float.simps algebra_simps)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   111
  } note diff_mult_minus = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   112
46545
haftmann
parents: 45481
diff changeset
   113
  { fix x :: float have "- (- x) = x" by (cases x) auto } note minus_minus = this
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   114
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   115
  have move_minus: "(-x) = -1 * real x" by auto (* coercion "inside" is necessary *)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   116
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   117
  have sum_eq: "(\<Sum>j=0..<n. (1 / (f (j' + j))) * real x ^ j) =
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   118
    (\<Sum>j = 0..<n. -1 ^ j * (1 / (f (j' + j))) * real (- x) ^ j)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   119
  proof (rule setsum_cong, simp)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   120
    fix j assume "j \<in> {0 ..< n}"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   121
    show "1 / (f (j' + j)) * real x ^ j = -1 ^ j * (1 / (f (j' + j))) * real (- x) ^ j"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   122
      unfolding move_minus power_mult_distrib mult_assoc[symmetric]
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   123
      unfolding mult_commute unfolding mult_assoc[of "-1 ^ j", symmetric] power_mult_distrib[symmetric]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   124
      by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   125
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   126
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   127
  have "0 \<le> real (-x)" using assms by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   128
  from horner_bounds[where G=G and F=F and f=f and s=s and prec=prec
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   129
    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,
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   130
    OF this f_Suc lb_0 refl ub_0 refl]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   131
  show "?lb" and "?ub" unfolding minus_minus sum_eq
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   132
    by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   133
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   134
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   135
subsection {* Selectors for next even or odd number *}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   136
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   137
text {*
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   138
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   139
The horner scheme computes alternating series. To get the upper and lower bounds we need to
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   140
guarantee to access a even or odd member. To do this we use @{term get_odd} and @{term get_even}.
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   141
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   142
*}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   143
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   144
definition get_odd :: "nat \<Rightarrow> nat" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   145
  "get_odd n = (if odd n then n else (Suc n))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   146
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   147
definition get_even :: "nat \<Rightarrow> nat" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   148
  "get_even n = (if even n then n else (Suc n))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   149
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   150
lemma get_odd[simp]: "odd (get_odd n)" unfolding get_odd_def by (cases "odd n", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   151
lemma get_even[simp]: "even (get_even n)" unfolding get_even_def by (cases "even n", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   152
lemma get_odd_ex: "\<exists> k. Suc k = get_odd n \<and> odd (Suc k)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   153
proof (cases "odd n")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   154
  case True hence "0 < n" by (rule odd_pos)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   155
  from gr0_implies_Suc[OF this] obtain k where "Suc k = n" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   156
  thus ?thesis unfolding get_odd_def if_P[OF True] using True[unfolded `Suc k = n`[symmetric]] by blast
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   157
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   158
  case False hence "odd (Suc n)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   159
  thus ?thesis unfolding get_odd_def if_not_P[OF False] by blast
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   160
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   161
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   162
lemma get_even_double: "\<exists>i. get_even n = 2 * i" using get_even[unfolded even_mult_two_ex] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   163
lemma get_odd_double: "\<exists>i. get_odd n = 2 * i + 1" using get_odd[unfolded odd_Suc_mult_two_ex] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   164
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   165
section "Power function"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   166
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   167
definition float_power_bnds :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   168
"float_power_bnds n l u = (if odd n \<or> 0 < l then (l ^ n, u ^ n)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   169
                      else if u < 0         then (u ^ n, l ^ n)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   170
                                            else (0, (max (-l) u) ^ n))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   171
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   172
lemma float_power_bnds: fixes x :: real
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   173
  assumes "(l1, u1) = float_power_bnds n l u" and "x \<in> {l .. u}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   174
  shows "x ^ n \<in> {l1..u1}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   175
proof (cases "even n")
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   176
  case True
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   177
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   178
  proof (cases "0 < l")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   179
    case True hence "odd n \<or> 0 < l" and "0 \<le> real l" unfolding less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   180
    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
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   181
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   182
    thus ?thesis using assms `0 < l` unfolding atLeastAtMost_iff l1 u1 float_power less_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   183
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   184
    case False hence P: "\<not> (odd n \<or> 0 < l)" using `even n` by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   185
    show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   186
    proof (cases "u < 0")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   187
      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
31809
hoelzl
parents: 31790
diff changeset
   188
      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]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   189
        unfolding power_minus_even[OF `even n`] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   190
      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
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   191
      ultimately show ?thesis using float_power by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   192
    next
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   193
      case False
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   194
      have "\<bar>x\<bar> \<le> real (max (-l) u)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   195
      proof (cases "-l \<le> u")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   196
        case True thus ?thesis unfolding max_def if_P[OF True] using assms unfolding le_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   197
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   198
        case False thus ?thesis unfolding max_def if_not_P[OF False] using assms unfolding le_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   199
      qed
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   200
      hence x_abs: "\<bar>x\<bar> \<le> \<bar>real (max (-l) u)\<bar>" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   201
      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
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   202
      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
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   203
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   204
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   205
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   206
  case False hence "odd n \<or> 0 < l" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   207
  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
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   208
  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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   209
  thus ?thesis unfolding atLeastAtMost_iff l1 u1 float_power less_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   210
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   211
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   212
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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   213
  using float_power_bnds by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   214
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   215
section "Square root"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   216
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   217
text {*
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   218
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   219
The square root computation is implemented as newton iteration. As first first step we use the
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   220
nearest power of two greater than the square root.
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   221
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   222
*}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   223
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   224
fun sqrt_iteration :: "nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   225
"sqrt_iteration prec 0 (Float m e) = Float 1 ((e + bitlen m) div 2 + 1)" |
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   226
"sqrt_iteration prec (Suc m) x = (let y = sqrt_iteration prec m x
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   227
                                  in Float 1 -1 * (y + float_divr prec x y))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   228
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   229
function ub_sqrt lb_sqrt :: "nat \<Rightarrow> float \<Rightarrow> float" where
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   230
"ub_sqrt prec x = (if 0 < x then (sqrt_iteration prec prec x)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   231
              else if x < 0 then - lb_sqrt prec (- x)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   232
                            else 0)" |
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   233
"lb_sqrt prec x = (if 0 < x then (float_divl prec x (sqrt_iteration prec prec x))
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   234
              else if x < 0 then - ub_sqrt prec (- x)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   235
                            else 0)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   236
by pat_completeness auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   237
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)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   238
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   239
declare lb_sqrt.simps[simp del]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   240
declare ub_sqrt.simps[simp del]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   241
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   242
lemma sqrt_ub_pos_pos_1:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   243
  assumes "sqrt x < b" and "0 < b" and "0 < x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   244
  shows "sqrt x < (b + x / b)/2"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   245
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   246
  from assms have "0 < (b - sqrt x) ^ 2 " by simp
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   247
  also have "\<dots> = b ^ 2 - 2 * b * sqrt x + (sqrt x) ^ 2" by algebra
46545
haftmann
parents: 45481
diff changeset
   248
  also have "\<dots> = b ^ 2 - 2 * b * sqrt x + x" using assms by simp
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   249
  finally have "0 < b ^ 2 - 2 * b * sqrt x + x" by assumption
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   250
  hence "0 < b / 2 - sqrt x + x / (2 * b)" using assms
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   251
    by (simp add: field_simps power2_eq_square)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   252
  thus ?thesis by (simp add: field_simps)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   253
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   254
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   255
lemma sqrt_iteration_bound: assumes "0 < real x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   256
  shows "sqrt x < (sqrt_iteration prec n x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   257
proof (induct n)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   258
  case 0
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   259
  show ?case
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   260
  proof (cases x)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   261
    case (Float m e)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   262
    hence "0 < m" using float_pos_m_pos[unfolded less_float_def] assms by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   263
    hence "0 < sqrt m" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   264
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   265
    have int_nat_bl: "(nat (bitlen m)) = bitlen m" using bitlen_ge0 by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   266
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   267
    have "x = (m / 2^nat (bitlen m)) * pow2 (e + (nat (bitlen m)))"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   268
      unfolding pow2_add pow2_int Float real_of_float_simp by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   269
    also have "\<dots> < 1 * pow2 (e + nat (bitlen m))"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   270
    proof (rule mult_strict_right_mono, auto)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   271
      show "real m < 2^nat (bitlen m)" using bitlen_bounds[OF `0 < m`, THEN conjunct2]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   272
        unfolding real_of_int_less_iff[of m, symmetric] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   273
    qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   274
    finally have "sqrt x < sqrt (pow2 (e + bitlen m))" unfolding int_nat_bl by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   275
    also have "\<dots> \<le> pow2 ((e + bitlen m) div 2 + 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   276
    proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   277
      let ?E = "e + bitlen m"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   278
      have E_mod_pow: "pow2 (?E mod 2) < 4"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   279
      proof (cases "?E mod 2 = 1")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   280
        case True thus ?thesis by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   281
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   282
        case False
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   283
        have "0 \<le> ?E mod 2" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   284
        have "?E mod 2 < 2" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   285
        from this[THEN zless_imp_add1_zle]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   286
        have "?E mod 2 \<le> 0" using False by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   287
        from xt1(5)[OF `0 \<le> ?E mod 2` this]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   288
        show ?thesis by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   289
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   290
      hence "sqrt (pow2 (?E mod 2)) < sqrt (2 * 2)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   291
      hence E_mod_pow: "sqrt (pow2 (?E mod 2)) < 2" unfolding real_sqrt_abs2 by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   292
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   293
      have E_eq: "pow2 ?E = pow2 (?E div 2 + ?E div 2 + ?E mod 2)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   294
      have "sqrt (pow2 ?E) = sqrt (pow2 (?E div 2) * pow2 (?E div 2) * pow2 (?E mod 2))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   295
        unfolding E_eq unfolding pow2_add ..
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   296
      also have "\<dots> = pow2 (?E div 2) * sqrt (pow2 (?E mod 2))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   297
        unfolding real_sqrt_mult[of _ "pow2 (?E mod 2)"] real_sqrt_abs2 by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   298
      also have "\<dots> < pow2 (?E div 2) * 2"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   299
        by (rule mult_strict_left_mono, auto intro: E_mod_pow)
44821
a92f65e174cf avoid using legacy theorem names
huffman
parents: 44568
diff changeset
   300
      also have "\<dots> = pow2 (?E div 2 + 1)" unfolding add_commute[of _ 1] pow2_add1 by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   301
      finally show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   302
    qed
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   303
    finally show ?thesis
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   304
      unfolding Float sqrt_iteration.simps real_of_float_simp by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   305
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   306
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   307
  case (Suc n)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   308
  let ?b = "sqrt_iteration prec n x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   309
  have "0 < sqrt x" using `0 < real x` by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   310
  also have "\<dots> < real ?b" using Suc .
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   311
  finally have "sqrt x < (?b + x / ?b)/2" using sqrt_ub_pos_pos_1[OF Suc _ `0 < real x`] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   312
  also have "\<dots> \<le> (?b + (float_divr prec x ?b))/2" by (rule divide_right_mono, auto simp add: float_divr)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   313
  also have "\<dots> = (Float 1 -1) * (?b + (float_divr prec x ?b))" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   314
  finally show ?case unfolding sqrt_iteration.simps Let_def real_of_float_mult real_of_float_add right_distrib .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   315
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   316
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   317
lemma sqrt_iteration_lower_bound: assumes "0 < real x"
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   318
  shows "0 < real (sqrt_iteration prec n x)" (is "0 < ?sqrt")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   319
proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   320
  have "0 < sqrt x" using assms by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   321
  also have "\<dots> < ?sqrt" using sqrt_iteration_bound[OF assms] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   322
  finally show ?thesis .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   323
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   324
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   325
lemma lb_sqrt_lower_bound: assumes "0 \<le> real x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   326
  shows "0 \<le> real (lb_sqrt prec x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   327
proof (cases "0 < x")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   328
  case True hence "0 < real x" and "0 \<le> x" using `0 \<le> real x` unfolding less_float_def le_float_def by auto
31809
hoelzl
parents: 31790
diff changeset
   329
  hence "0 < sqrt_iteration prec prec x" unfolding less_float_def using sqrt_iteration_lower_bound by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   330
  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
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   331
  thus ?thesis unfolding lb_sqrt.simps using True by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   332
next
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   333
  case False with `0 \<le> real x` have "real x = 0" unfolding less_float_def by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   334
  thus ?thesis unfolding lb_sqrt.simps less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   335
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   336
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   337
lemma bnds_sqrt':
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   338
  shows "sqrt x \<in> {(lb_sqrt prec x) .. (ub_sqrt prec x) }"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   339
proof -
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   340
  { fix x :: float assume "0 < x"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   341
    hence "0 < real x" and "0 \<le> real x" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   342
    hence sqrt_gt0: "0 < sqrt x" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   343
    hence sqrt_ub: "sqrt x < sqrt_iteration prec prec x" using sqrt_iteration_bound by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   344
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   345
    have "(float_divl prec x (sqrt_iteration prec prec x)) \<le>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   346
          x / (sqrt_iteration prec prec x)" by (rule float_divl)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   347
    also have "\<dots> < x / sqrt x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   348
      by (rule divide_strict_left_mono[OF sqrt_ub `0 < real x`
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   349
               mult_pos_pos[OF order_less_trans[OF sqrt_gt0 sqrt_ub] sqrt_gt0]])
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   350
    also have "\<dots> = sqrt x"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   351
      unfolding inverse_eq_iff_eq[of _ "sqrt x", symmetric]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   352
                sqrt_divide_self_eq[OF `0 \<le> real x`, symmetric] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   353
    finally have "lb_sqrt prec x \<le> sqrt x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   354
      unfolding lb_sqrt.simps if_P[OF `0 < x`] by auto }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   355
  note lb = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   356
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   357
  { fix x :: float assume "0 < x"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   358
    hence "0 < real x" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   359
    hence "0 < sqrt x" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   360
    hence "sqrt x < sqrt_iteration prec prec x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   361
      using sqrt_iteration_bound by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   362
    hence "sqrt x \<le> ub_sqrt prec x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   363
      unfolding ub_sqrt.simps if_P[OF `0 < x`] by auto }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   364
  note ub = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   365
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   366
  show ?thesis
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   367
  proof (cases "0 < x")
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   368
    case True with lb ub show ?thesis by auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   369
  next case False show ?thesis
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   370
  proof (cases "real x = 0")
31809
hoelzl
parents: 31790
diff changeset
   371
    case True thus ?thesis
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   372
      by (auto simp add: less_float_def lb_sqrt.simps ub_sqrt.simps)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   373
  next
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   374
    case False with `\<not> 0 < x` have "x < 0" and "0 < -x"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   375
      by (auto simp add: less_float_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   376
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   377
    with `\<not> 0 < x`
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   378
    show ?thesis using lb[OF `0 < -x`] ub[OF `0 < -x`]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   379
      by (auto simp add: real_sqrt_minus lb_sqrt.simps ub_sqrt.simps)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   380
  qed qed
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   381
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   382
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   383
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"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   384
proof ((rule allI) +, rule impI, erule conjE, rule conjI)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   385
  fix x :: real fix lx ux
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   386
  assume "(l, u) = (lb_sqrt prec lx, ub_sqrt prec ux)"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   387
    and x: "x \<in> {lx .. ux}"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   388
  hence l: "l = lb_sqrt prec lx " and u: "u = ub_sqrt prec ux" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   389
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   390
  have "sqrt lx \<le> sqrt x" using x by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   391
  from order_trans[OF _ this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   392
  show "l \<le> sqrt x" unfolding l using bnds_sqrt'[of lx prec] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   393
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   394
  have "sqrt x \<le> sqrt ux" using x by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   395
  from order_trans[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   396
  show "sqrt x \<le> u" unfolding u using bnds_sqrt'[of ux prec] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   397
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   398
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   399
section "Arcus tangens and \<pi>"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   400
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   401
subsection "Compute arcus tangens series"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   402
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   403
text {*
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   404
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   405
As first step we implement the computation of the arcus tangens series. This is only valid in the range
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   406
@{term "{-1 :: real .. 1}"}. This is used to compute \<pi> and then the entire arcus tangens.
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   407
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   408
*}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   409
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   410
fun ub_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   411
and lb_arctan_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   412
  "ub_arctan_horner prec 0 k x = 0"
31809
hoelzl
parents: 31790
diff changeset
   413
| "ub_arctan_horner prec (Suc n) k x =
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   414
    (rapprox_rat prec 1 k) - x * (lb_arctan_horner prec n (k + 2) x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   415
| "lb_arctan_horner prec 0 k x = 0"
31809
hoelzl
parents: 31790
diff changeset
   416
| "lb_arctan_horner prec (Suc n) k x =
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   417
    (lapprox_rat prec 1 k) - x * (ub_arctan_horner prec n (k + 2) x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   418
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   419
lemma arctan_0_1_bounds': assumes "0 \<le> real x" "real x \<le> 1" and "even n"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   420
  shows "arctan x \<in> {(x * lb_arctan_horner prec n 1 (x * x)) .. (x * ub_arctan_horner prec (Suc n) 1 (x * x))}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   421
proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   422
  let "?c i" = "-1^i * (1 / (i * 2 + (1::nat)) * real x ^ (i * 2 + 1))"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   423
  let "?S n" = "\<Sum> i=0..<n. ?c i"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   424
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   425
  have "0 \<le> real (x * x)" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   426
  from `even n` obtain m where "2 * m = n" unfolding even_mult_two_ex by auto
31809
hoelzl
parents: 31790
diff changeset
   427
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   428
  have "arctan x \<in> { ?S n .. ?S (Suc n) }"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   429
  proof (cases "real x = 0")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   430
    case False
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   431
    hence "0 < real x" using `0 \<le> real x` by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   432
    hence prem: "0 < 1 / (0 * 2 + (1::nat)) * real x ^ (0 * 2 + 1)" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   433
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   434
    have "\<bar> real x \<bar> \<le> 1"  using `0 \<le> real x` `real x \<le> 1` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   435
    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`]
31790
05c92381363c corrected and unified thm names
nipkow
parents: 31508
diff changeset
   436
    show ?thesis unfolding arctan_series[OF `\<bar> real x \<bar> \<le> 1`] Suc_eq_plus1  .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   437
  qed auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   438
  note arctan_bounds = this[unfolded atLeastAtMost_iff]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   439
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   440
  have F: "\<And>n. 2 * Suc n + 1 = 2 * n + 1 + 2" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   441
31809
hoelzl
parents: 31790
diff changeset
   442
  note bounds = horner_bounds[where s=1 and f="\<lambda>i. 2 * i + 1" and j'=0
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   443
    and lb="\<lambda>n i k x. lb_arctan_horner prec n k x"
31809
hoelzl
parents: 31790
diff changeset
   444
    and ub="\<lambda>n i k x. ub_arctan_horner prec n k x",
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   445
    OF `0 \<le> real (x*x)` F lb_arctan_horner.simps ub_arctan_horner.simps]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   446
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   447
  { have "(x * lb_arctan_horner prec n 1 (x*x)) \<le> ?S n"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   448
      using bounds(1) `0 \<le> real x`
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   449
      unfolding real_of_float_mult power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   450
      unfolding mult_commute[where 'a=real] mult_commute[of _ "2::nat"] power_mult power2_eq_square[of "real x"]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   451
      by (auto intro!: mult_left_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   452
    also have "\<dots> \<le> arctan x" using arctan_bounds ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   453
    finally have "(x * lb_arctan_horner prec n 1 (x*x)) \<le> arctan x" . }
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   454
  moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   455
  { have "arctan x \<le> ?S (Suc n)" using arctan_bounds ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   456
    also have "\<dots> \<le> (x * ub_arctan_horner prec (Suc n) 1 (x*x))"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   457
      using bounds(2)[of "Suc n"] `0 \<le> real x`
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   458
      unfolding real_of_float_mult power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   459
      unfolding mult_commute[where 'a=real] mult_commute[of _ "2::nat"] power_mult power2_eq_square[of "real x"]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   460
      by (auto intro!: mult_left_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   461
    finally have "arctan x \<le> (x * ub_arctan_horner prec (Suc n) 1 (x*x))" . }
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   462
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   463
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   464
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   465
lemma arctan_0_1_bounds: assumes "0 \<le> real x" "real x \<le> 1"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   466
  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))}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   467
proof (cases "even n")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   468
  case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   469
  obtain n' where "Suc n' = get_odd n" and "odd (Suc n')" using get_odd_ex by auto
31148
7ba7c1f8bc22 Cleaned up Parity a little
nipkow
parents: 31099
diff changeset
   470
  hence "even n'" unfolding even_Suc by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   471
  have "arctan x \<le> x * ub_arctan_horner prec (get_odd n) 1 (x * x)"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   472
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   473
  moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   474
  have "x * lb_arctan_horner prec (get_even n) 1 (x * x) \<le> arctan x"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   475
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   476
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   477
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   478
  case False hence "0 < n" by (rule odd_pos)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   479
  from gr0_implies_Suc[OF this] obtain n' where "n = Suc n'" ..
31148
7ba7c1f8bc22 Cleaned up Parity a little
nipkow
parents: 31099
diff changeset
   480
  from False[unfolded this even_Suc]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   481
  have "even n'" and "even (Suc (Suc n'))" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   482
  have "get_odd n = Suc n'" unfolding get_odd_def if_P[OF False] using `n = Suc n'` .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   483
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   484
  have "arctan x \<le> x * ub_arctan_horner prec (get_odd n) 1 (x * x)"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   485
    unfolding `get_odd n = Suc n'` using arctan_0_1_bounds'[OF `0 \<le> real x` `real x \<le> 1` `even n'`] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   486
  moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   487
  have "(x * lb_arctan_horner prec (get_even n) 1 (x * x)) \<le> arctan x"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   488
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   489
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   490
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   491
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   492
subsection "Compute \<pi>"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   493
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   494
definition ub_pi :: "nat \<Rightarrow> float" where
31809
hoelzl
parents: 31790
diff changeset
   495
  "ub_pi prec = (let A = rapprox_rat prec 1 5 ;
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   496
                     B = lapprox_rat prec 1 239
31809
hoelzl
parents: 31790
diff changeset
   497
                 in ((Float 1 2) * ((Float 1 2) * A * (ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (A * A)) -
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   498
                                                  B * (lb_arctan_horner prec (get_even (prec div 14 + 1)) 1 (B * B)))))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   499
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   500
definition lb_pi :: "nat \<Rightarrow> float" where
31809
hoelzl
parents: 31790
diff changeset
   501
  "lb_pi prec = (let A = lapprox_rat prec 1 5 ;
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   502
                     B = rapprox_rat prec 1 239
31809
hoelzl
parents: 31790
diff changeset
   503
                 in ((Float 1 2) * ((Float 1 2) * A * (lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (A * A)) -
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   504
                                                  B * (ub_arctan_horner prec (get_odd (prec div 14 + 1)) 1 (B * B)))))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   505
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   506
lemma pi_boundaries: "pi \<in> {(lb_pi n) .. (ub_pi n)}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   507
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   508
  have machin_pi: "pi = 4 * (4 * arctan (1 / 5) - arctan (1 / 239))" unfolding machin[symmetric] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   509
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   510
  { fix prec n :: nat fix k :: int assume "1 < k" hence "0 \<le> k" and "0 < k" and "1 \<le> k" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   511
    let ?k = "rapprox_rat prec 1 k"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   512
    have "1 div k = 0" using div_pos_pos_trivial[OF _ `1 < k`] by auto
31809
hoelzl
parents: 31790
diff changeset
   513
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   514
    have "0 \<le> real ?k" by (rule order_trans[OF _ rapprox_rat], auto simp add: `0 \<le> k`)
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   515
    have "real ?k \<le> 1" unfolding rapprox_rat.simps(2)[OF zero_le_one `0 < k`]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   516
      by (rule rapprox_posrat_le1, auto simp add: `0 < k` `1 \<le> k`)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   517
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   518
    have "1 / k \<le> ?k" using rapprox_rat[where x=1 and y=k] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   519
    hence "arctan (1 / k) \<le> arctan ?k" by (rule arctan_monotone')
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   520
    also have "\<dots> \<le> (?k * ub_arctan_horner prec (get_odd n) 1 (?k * ?k))"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   521
      using arctan_0_1_bounds[OF `0 \<le> real ?k` `real ?k \<le> 1`] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   522
    finally have "arctan (1 / k) \<le> ?k * ub_arctan_horner prec (get_odd n) 1 (?k * ?k)" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   523
  } note ub_arctan = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   524
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   525
  { fix prec n :: nat fix k :: int assume "1 < k" hence "0 \<le> k" and "0 < k" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   526
    let ?k = "lapprox_rat prec 1 k"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   527
    have "1 div k = 0" using div_pos_pos_trivial[OF _ `1 < k`] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   528
    have "1 / k \<le> 1" using `1 < k` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   529
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   530
    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`)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   531
    have "\<And>n. real ?k \<le> 1" using lapprox_rat by (rule order_trans, auto simp add: `1 / k \<le> 1`)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   532
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   533
    have "?k \<le> 1 / k" using lapprox_rat[where x=1 and y=k] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   534
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   535
    have "?k * lb_arctan_horner prec (get_even n) 1 (?k * ?k) \<le> arctan ?k"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   536
      using arctan_0_1_bounds[OF `0 \<le> real ?k` `real ?k \<le> 1`] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   537
    also have "\<dots> \<le> arctan (1 / k)" using `?k \<le> 1 / k` by (rule arctan_monotone')
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   538
    finally have "?k * lb_arctan_horner prec (get_even n) 1 (?k * ?k) \<le> arctan (1 / k)" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   539
  } note lb_arctan = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   540
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   541
  have "pi \<le> ub_pi n"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   542
    unfolding ub_pi_def machin_pi Let_def real_of_float_mult real_of_float_sub unfolding Float_num
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   543
    using lb_arctan[of 239] ub_arctan[of 5]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   544
    by (auto intro!: mult_left_mono add_mono simp add: diff_minus simp del: lapprox_rat.simps rapprox_rat.simps)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   545
  moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   546
  have "lb_pi n \<le> pi"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   547
    unfolding lb_pi_def machin_pi Let_def real_of_float_mult real_of_float_sub Float_num
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   548
    using lb_arctan[of 5] ub_arctan[of 239]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   549
    by (auto intro!: mult_left_mono add_mono simp add: diff_minus simp del: lapprox_rat.simps rapprox_rat.simps)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   550
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   551
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   552
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   553
subsection "Compute arcus tangens in the entire domain"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   554
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   555
function lb_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" and ub_arctan :: "nat \<Rightarrow> float \<Rightarrow> float" where
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   556
  "lb_arctan prec x = (let ub_horner = \<lambda> x. x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x) ;
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   557
                           lb_horner = \<lambda> x. x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   558
    in (if x < 0          then - ub_arctan prec (-x) else
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   559
        if x \<le> Float 1 -1 then lb_horner x else
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   560
        if x \<le> Float 1 1  then Float 1 1 * lb_horner (float_divl prec x (1 + ub_sqrt prec (1 + x * x)))
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   561
                          else (let inv = float_divr prec 1 x
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   562
                                in if inv > 1 then 0
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   563
                                              else lb_pi prec * Float 1 -1 - ub_horner inv)))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   564
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   565
| "ub_arctan prec x = (let lb_horner = \<lambda> x. x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x) ;
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   566
                           ub_horner = \<lambda> x. x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   567
    in (if x < 0          then - lb_arctan prec (-x) else
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   568
        if x \<le> Float 1 -1 then ub_horner x else
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   569
        if x \<le> Float 1 1  then let y = float_divr prec x (1 + lb_sqrt prec (1 + x * x))
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   570
                               in if y > 1 then ub_pi prec * Float 1 -1
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   571
                                           else Float 1 1 * ub_horner y
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   572
                          else ub_pi prec * Float 1 -1 - lb_horner (float_divl prec 1 x)))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   573
by pat_completeness auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   574
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)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   575
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   576
declare ub_arctan_horner.simps[simp del]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   577
declare lb_arctan_horner.simps[simp del]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   578
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   579
lemma lb_arctan_bound': assumes "0 \<le> real x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   580
  shows "lb_arctan prec x \<le> arctan x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   581
proof -
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   582
  have "\<not> x < 0" and "0 \<le> x" unfolding less_float_def le_float_def using `0 \<le> real x` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   583
  let "?ub_horner x" = "x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   584
    and "?lb_horner x" = "x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   585
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   586
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   587
  proof (cases "x \<le> Float 1 -1")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   588
    case True hence "real x \<le> 1" unfolding le_float_def Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   589
    show ?thesis unfolding lb_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_P[OF True]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   590
      using arctan_0_1_bounds[OF `0 \<le> real x` `real x \<le> 1`] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   591
  next
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   592
    case False hence "0 < real x" unfolding le_float_def Float_num by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   593
    let ?R = "1 + sqrt (1 + real x * real x)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   594
    let ?fR = "1 + ub_sqrt prec (1 + x * x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   595
    let ?DIV = "float_divl prec x ?fR"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   596
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   597
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   598
    hence divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   599
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   600
    have "sqrt (1 + x * x) \<le> ub_sqrt prec (1 + x * x)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   601
      using bnds_sqrt'[of "1 + x * x"] by auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   602
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   603
    hence "?R \<le> ?fR" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   604
    hence "0 < ?fR" and "0 < real ?fR" unfolding less_float_def using `0 < ?R` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   605
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   606
    have monotone: "(float_divl prec x ?fR) \<le> x / ?R"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   607
    proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   608
      have "?DIV \<le> real x / ?fR" by (rule float_divl)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   609
      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]])
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   610
      finally show ?thesis .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   611
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   612
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   613
    show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   614
    proof (cases "x \<le> Float 1 1")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   615
      case True
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   616
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   617
      have "x \<le> sqrt (1 + x * x)" using real_sqrt_sum_squares_ge2[where x=1, unfolded numeral_2_eq_2] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   618
      also have "\<dots> \<le> (ub_sqrt prec (1 + x * x))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   619
        using bnds_sqrt'[of "1 + x * x"] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   620
      finally have "real x \<le> ?fR" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   621
      moreover have "?DIV \<le> real x / ?fR" by (rule float_divl)
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   622
      ultimately have "real ?DIV \<le> 1" unfolding divide_le_eq_1_pos[OF `0 < real ?fR`, symmetric] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   623
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   624
      have "0 \<le> real ?DIV" using float_divl_lower_bound[OF `0 \<le> x` `0 < ?fR`] unfolding le_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   625
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   626
      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
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   627
        using arctan_0_1_bounds[OF `0 \<le> real ?DIV` `real ?DIV \<le> 1`] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   628
      also have "\<dots> \<le> 2 * arctan (x / ?R)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   629
        using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   630
      also have "2 * arctan (x / ?R) = arctan x" using arctan_half[symmetric] unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   631
      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] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   632
    next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   633
      case False
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   634
      hence "2 < real x" unfolding le_float_def Float_num by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   635
      hence "1 \<le> real x" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   636
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   637
      let "?invx" = "float_divr prec 1 x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   638
      have "0 \<le> arctan x" using arctan_monotone'[OF `0 \<le> real x`] using arctan_tan[of 0, unfolded tan_zero] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   639
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   640
      show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   641
      proof (cases "1 < ?invx")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   642
        case True
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   643
        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]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   644
          using `0 \<le> arctan x` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   645
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   646
        case False
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   647
        hence "real ?invx \<le> 1" unfolding less_float_def by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   648
        have "0 \<le> real ?invx" by (rule order_trans[OF _ float_divr], auto simp add: `0 \<le> real x`)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   649
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   650
        have "1 / x \<noteq> 0" and "0 < 1 / x" using `0 < real x` by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   651
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   652
        have "arctan (1 / x) \<le> arctan ?invx" unfolding real_of_float_1[symmetric] by (rule arctan_monotone', rule float_divr)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   653
        also have "\<dots> \<le> (?ub_horner ?invx)" using arctan_0_1_bounds[OF `0 \<le> real ?invx` `real ?invx \<le> 1`] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   654
        finally have "pi / 2 - (?ub_horner ?invx) \<le> arctan x"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   655
          using `0 \<le> arctan x` arctan_inverse[OF `1 / x \<noteq> 0`]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   656
          unfolding real_sgn_pos[OF `0 < 1 / real x`] le_diff_eq by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   657
        moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   658
        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
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   659
        ultimately
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   660
        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]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   661
          by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   662
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   663
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   664
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   665
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   666
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   667
lemma ub_arctan_bound': assumes "0 \<le> real x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   668
  shows "arctan x \<le> ub_arctan prec x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   669
proof -
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   670
  have "\<not> x < 0" and "0 \<le> x" unfolding less_float_def le_float_def using `0 \<le> real x` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   671
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   672
  let "?ub_horner x" = "x * ub_arctan_horner prec (get_odd (prec div 4 + 1)) 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   673
    and "?lb_horner x" = "x * lb_arctan_horner prec (get_even (prec div 4 + 1)) 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   674
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   675
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   676
  proof (cases "x \<le> Float 1 -1")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   677
    case True hence "real x \<le> 1" unfolding le_float_def Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   678
    show ?thesis unfolding ub_arctan.simps Let_def if_not_P[OF `\<not> x < 0`] if_P[OF True]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   679
      using arctan_0_1_bounds[OF `0 \<le> real x` `real x \<le> 1`] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   680
  next
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   681
    case False hence "0 < real x" unfolding le_float_def Float_num by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   682
    let ?R = "1 + sqrt (1 + real x * real x)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   683
    let ?fR = "1 + lb_sqrt prec (1 + x * x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   684
    let ?DIV = "float_divr prec x ?fR"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   685
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   686
    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
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   687
    hence "0 \<le> real (1 + x*x)" by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   688
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   689
    hence divisor_gt0: "0 < ?R" by (auto intro: add_pos_nonneg)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   690
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   691
    have "lb_sqrt prec (1 + x * x) \<le> sqrt (1 + x * x)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   692
      using bnds_sqrt'[of "1 + x * x"] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   693
    hence "?fR \<le> ?R" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   694
    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)`])
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   695
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   696
    have monotone: "x / ?R \<le> (float_divr prec x ?fR)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   697
    proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   698
      from divide_left_mono[OF `?fR \<le> ?R` `0 \<le> real x` mult_pos_pos[OF divisor_gt0 `0 < real ?fR`]]
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   699
      have "x / ?R \<le> x / ?fR" .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   700
      also have "\<dots> \<le> ?DIV" by (rule float_divr)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   701
      finally show ?thesis .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   702
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   703
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   704
    show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   705
    proof (cases "x \<le> Float 1 1")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   706
      case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   707
      show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   708
      proof (cases "?DIV > 1")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   709
        case True
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   710
        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
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   711
        from order_less_le_trans[OF arctan_ubound this, THEN less_imp_le]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   712
        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] .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   713
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   714
        case False
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   715
        hence "real ?DIV \<le> 1" unfolding less_float_def by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   716
44349
f057535311c5 remove redundant lemma real_0_le_divide_iff in favor or zero_le_divide_iff
huffman
parents: 44306
diff changeset
   717
        have "0 \<le> x / ?R" using `0 \<le> real x` `0 < ?R` unfolding zero_le_divide_iff by auto
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   718
        hence "0 \<le> real ?DIV" using monotone by (rule order_trans)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   719
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   720
        have "arctan x = 2 * arctan (x / ?R)" using arctan_half unfolding numeral_2_eq_2 power_Suc2 power_0 mult_1_left .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   721
        also have "\<dots> \<le> 2 * arctan (?DIV)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   722
          using arctan_monotone'[OF monotone] by (auto intro!: mult_left_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   723
        also have "\<dots> \<le> (Float 1 1 * ?ub_horner ?DIV)" unfolding real_of_float_mult[of "Float 1 1"] Float_num
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   724
          using arctan_0_1_bounds[OF `0 \<le> real ?DIV` `real ?DIV \<le> 1`] by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   725
        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] .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   726
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   727
    next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   728
      case False
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   729
      hence "2 < real x" unfolding le_float_def Float_num by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   730
      hence "1 \<le> real x" by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   731
      hence "0 < real x" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   732
      hence "0 < x" unfolding less_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   733
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   734
      let "?invx" = "float_divl prec 1 x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   735
      have "0 \<le> arctan x" using arctan_monotone'[OF `0 \<le> real x`] using arctan_tan[of 0, unfolded tan_zero] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   736
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   737
      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`])
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   738
      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`)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
   739
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   740
      have "1 / x \<noteq> 0" and "0 < 1 / x" using `0 < real x` by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   741
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   742
      have "(?lb_horner ?invx) \<le> arctan (?invx)" using arctan_0_1_bounds[OF `0 \<le> real ?invx` `real ?invx \<le> 1`] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   743
      also have "\<dots> \<le> arctan (1 / x)" unfolding real_of_float_1[symmetric] by (rule arctan_monotone', rule float_divl)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   744
      finally have "arctan x \<le> pi / 2 - (?lb_horner ?invx)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   745
        using `0 \<le> arctan x` arctan_inverse[OF `1 / x \<noteq> 0`]
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   746
        unfolding real_sgn_pos[OF `0 < 1 / x`] le_diff_eq by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   747
      moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   748
      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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   749
      ultimately
46545
haftmann
parents: 45481
diff changeset
   750
      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 False]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   751
        by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   752
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   753
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   754
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   755
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   756
lemma arctan_boundaries:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   757
  "arctan x \<in> {(lb_arctan prec x) .. (ub_arctan prec x)}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   758
proof (cases "0 \<le> x")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   759
  case True hence "0 \<le> real x" unfolding le_float_def by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   760
  show ?thesis using ub_arctan_bound'[OF `0 \<le> real x`] lb_arctan_bound'[OF `0 \<le> real x`] unfolding atLeastAtMost_iff by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   761
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   762
  let ?mx = "-x"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   763
  case False hence "x < 0" and "0 \<le> real ?mx" unfolding le_float_def less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   764
  hence bounds: "lb_arctan prec ?mx \<le> arctan ?mx \<and> arctan ?mx \<le> ub_arctan prec ?mx"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   765
    using ub_arctan_bound'[OF `0 \<le> real ?mx`] lb_arctan_bound'[OF `0 \<le> real ?mx`] by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   766
  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`]
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   767
    unfolding atLeastAtMost_iff using bounds[unfolded real_of_float_minus arctan_minus] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   768
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   769
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   770
lemma bnds_arctan: "\<forall> (x::real) lx ux. (l, u) = (lb_arctan prec lx, ub_arctan prec ux) \<and> x \<in> {lx .. ux} \<longrightarrow> l \<le> arctan x \<and> arctan x \<le> u"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   771
proof (rule allI, rule allI, rule allI, rule impI)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   772
  fix x :: real fix lx ux
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   773
  assume "(l, u) = (lb_arctan prec lx, ub_arctan prec ux) \<and> x \<in> {lx .. ux}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   774
  hence l: "lb_arctan prec lx = l " and u: "ub_arctan prec ux = u" and x: "x \<in> {lx .. ux}" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   775
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   776
  { from arctan_boundaries[of lx prec, unfolded l]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   777
    have "l \<le> arctan lx" by (auto simp del: lb_arctan.simps)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   778
    also have "\<dots> \<le> arctan x" using x by (auto intro: arctan_monotone')
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   779
    finally have "l \<le> arctan x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   780
  } moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   781
  { have "arctan x \<le> arctan ux" using x by (auto intro: arctan_monotone')
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   782
    also have "\<dots> \<le> u" using arctan_boundaries[of ux prec, unfolded u] by (auto simp del: ub_arctan.simps)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   783
    finally have "arctan x \<le> u" .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   784
  } ultimately show "l \<le> arctan x \<and> arctan x \<le> u" ..
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   785
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   786
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   787
section "Sinus and Cosinus"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   788
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   789
subsection "Compute the cosinus and sinus series"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   790
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   791
fun ub_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   792
and lb_sin_cos_aux :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   793
  "ub_sin_cos_aux prec 0 i k x = 0"
31809
hoelzl
parents: 31790
diff changeset
   794
| "ub_sin_cos_aux prec (Suc n) i k x =
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   795
    (rapprox_rat prec 1 k) - x * (lb_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   796
| "lb_sin_cos_aux prec 0 i k x = 0"
31809
hoelzl
parents: 31790
diff changeset
   797
| "lb_sin_cos_aux prec (Suc n) i k x =
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   798
    (lapprox_rat prec 1 k) - x * (ub_sin_cos_aux prec n (i + 2) (k * i * (i + 1)) x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   799
lemma cos_aux:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   800
  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")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   801
  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")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   802
proof -
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   803
  have "0 \<le> real (x * x)" unfolding real_of_float_mult by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   804
  let "?f n" = "fact (2 * n)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   805
31809
hoelzl
parents: 31790
diff changeset
   806
  { fix n
45129
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
   807
    have F: "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n) auto
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30968
diff changeset
   808
    have "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 1 * (((\<lambda>i. i + 2) ^^ n) 1 + 1)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   809
      unfolding F by auto } note f_eq = this
31809
hoelzl
parents: 31790
diff changeset
   810
hoelzl
parents: 31790
diff changeset
   811
  from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0,
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   812
    OF `0 \<le> real (x * x)` f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps]
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   813
  show "?lb" and "?ub" by (auto simp add: power_mult power2_eq_square[of "real x"])
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   814
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   815
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   816
lemma cos_boundaries: assumes "0 \<le> real x" and "x \<le> pi / 2"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   817
  shows "cos x \<in> {(lb_sin_cos_aux prec (get_even n) 1 1 (x * x)) .. (ub_sin_cos_aux prec (get_odd n) 1 1 (x * x))}"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   818
proof (cases "real x = 0")
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   819
  case False hence "real x \<noteq> 0" by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   820
  hence "0 < x" and "0 < real x" using `0 \<le> real x` unfolding less_float_def by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   821
  have "0 < x * x" using `0 < x` unfolding less_float_def real_of_float_mult real_of_float_0
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   822
    using mult_pos_pos[where a="real x" and b="real x"] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   823
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30886
diff changeset
   824
  { fix x n have "(\<Sum> i=0..<n. -1^i * (1/real (fact (2 * i))) * x ^ (2 * i))
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   825
    = (\<Sum> i = 0 ..< 2 * n. (if even(i) then (-1 ^ (i div 2))/(real (fact i)) else 0) * x ^ i)" (is "?sum = ?ifsum")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   826
  proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   827
    have "?sum = ?sum + (\<Sum> j = 0 ..< n. 0)" by auto
31809
hoelzl
parents: 31790
diff changeset
   828
    also have "\<dots> =
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   829
      (\<Sum> j = 0 ..< n. -1 ^ ((2 * j) div 2) / (real (fact (2 * j))) * x ^(2 * j)) + (\<Sum> j = 0 ..< n. 0)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   830
    also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. if even i then -1 ^ (i div 2) / (real (fact i)) * x ^ i else 0)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   831
      unfolding sum_split_even_odd ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   832
    also have "\<dots> = (\<Sum> i = 0 ..< 2 * n. (if even i then -1 ^ (i div 2) / (real (fact i)) else 0) * x ^ i)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   833
      by (rule setsum_cong2) auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   834
    finally show ?thesis by assumption
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   835
  qed } note morph_to_if_power = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   836
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   837
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   838
  { fix n :: nat assume "0 < n"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   839
    hence "0 < 2 * n" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   840
    obtain t where "0 < t" and "t < real x" and
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   841
      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)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   842
      + (cos (t + 1/2 * (2 * n) * pi) / real (fact (2*n))) * (real x)^(2*n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   843
      (is "_ = ?SUM + ?rest / ?fact * ?pow")
44306
33572a766836 fold definitions of sin_coeff and cos_coeff in Maclaurin lemmas
huffman
parents: 44305
diff changeset
   844
      using Maclaurin_cos_expansion2[OF `0 < real x` `0 < 2 * n`]
33572a766836 fold definitions of sin_coeff and cos_coeff in Maclaurin lemmas
huffman
parents: 44305
diff changeset
   845
      unfolding cos_coeff_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   846
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   847
    have "cos t * -1^n = cos t * cos (n * pi) + sin t * sin (n * pi)" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   848
    also have "\<dots> = cos (t + n * pi)"  using cos_add by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   849
    also have "\<dots> = ?rest" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   850
    finally have "cos t * -1^n = ?rest" .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   851
    moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   852
    have "t \<le> pi / 2" using `t < real x` and `x \<le> pi / 2` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   853
    hence "0 \<le> cos t" using `0 < t` and cos_ge_zero by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   854
    ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest " by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   855
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   856
    have "0 < ?fact" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   857
    have "0 < ?pow" using `0 < real x` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   858
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   859
    {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   860
      assume "even n"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   861
      have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> ?SUM"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   862
        unfolding morph_to_if_power[symmetric] using cos_aux by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   863
      also have "\<dots> \<le> cos x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   864
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   865
        from even[OF `even n`] `0 < ?fact` `0 < ?pow`
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   866
        have "0 \<le> (?rest / ?fact) * ?pow" by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   867
        thus ?thesis unfolding cos_eq by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   868
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   869
      finally have "(lb_sin_cos_aux prec n 1 1 (x * x)) \<le> cos x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   870
    } note lb = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   871
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   872
    {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   873
      assume "odd n"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   874
      have "cos x \<le> ?SUM"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   875
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   876
        from `0 < ?fact` and `0 < ?pow` and odd[OF `odd n`]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   877
        have "0 \<le> (- ?rest) / ?fact * ?pow"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   878
          by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   879
        thus ?thesis unfolding cos_eq by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   880
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   881
      also have "\<dots> \<le> (ub_sin_cos_aux prec n 1 1 (x * x))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   882
        unfolding morph_to_if_power[symmetric] using cos_aux by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   883
      finally have "cos x \<le> (ub_sin_cos_aux prec n 1 1 (x * x))" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   884
    } note ub = this and lb
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   885
  } note ub = this(1) and lb = this(2)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   886
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   887
  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] .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   888
  moreover have "(lb_sin_cos_aux prec (get_even n) 1 1 (x * x)) \<le> cos x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   889
  proof (cases "0 < get_even n")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   890
    case True show ?thesis using lb[OF True get_even] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   891
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   892
    case False
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   893
    hence "get_even n = 0" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   894
    have "- (pi / 2) \<le> x" by (rule order_trans[OF _ `0 < real x`[THEN less_imp_le]], auto)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   895
    with `x \<le> pi / 2`
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   896
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   897
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   898
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   899
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   900
  case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   901
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   902
  proof (cases "n = 0")
31809
hoelzl
parents: 31790
diff changeset
   903
    case True
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   904
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   905
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   906
    case False with not0_implies_Suc obtain m where "n = Suc m" by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   907
    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)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   908
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   909
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   910
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   911
lemma sin_aux: assumes "0 \<le> real x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   912
  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")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   913
  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")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   914
proof -
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   915
  have "0 \<le> real (x * x)" unfolding real_of_float_mult by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   916
  let "?f n" = "fact (2 * n + 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   917
31809
hoelzl
parents: 31790
diff changeset
   918
  { fix n
45129
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
   919
    have F: "\<And>m. ((\<lambda>i. i + 2) ^^ n) m = m + 2 * n" by (induct n) auto
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30968
diff changeset
   920
    have "?f (Suc n) = ?f n * ((\<lambda>i. i + 2) ^^ n) 2 * (((\<lambda>i. i + 2) ^^ n) 2 + 1)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   921
      unfolding F by auto } note f_eq = this
31809
hoelzl
parents: 31790
diff changeset
   922
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   923
  from horner_bounds[where lb="lb_sin_cos_aux prec" and ub="ub_sin_cos_aux prec" and j'=0,
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   924
    OF `0 \<le> real (x * x)` f_eq lb_sin_cos_aux.simps ub_sin_cos_aux.simps]
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   925
  show "?lb" and "?ub" using `0 \<le> real x` unfolding real_of_float_mult
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   926
    unfolding power_add power_one_right mult_assoc[symmetric] setsum_left_distrib[symmetric]
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
   927
    unfolding mult_commute[where 'a=real]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   928
    by (auto intro!: mult_left_mono simp add: power_mult power2_eq_square[of "real x"])
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   929
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   930
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   931
lemma sin_boundaries: assumes "0 \<le> real x" and "x \<le> pi / 2"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   932
  shows "sin x \<in> {(x * lb_sin_cos_aux prec (get_even n) 2 1 (x * x)) .. (x * ub_sin_cos_aux prec (get_odd n) 2 1 (x * x))}"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   933
proof (cases "real x = 0")
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   934
  case False hence "real x \<noteq> 0" by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   935
  hence "0 < x" and "0 < real x" using `0 \<le> real x` unfolding less_float_def by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   936
  have "0 < x * x" using `0 < x` unfolding less_float_def real_of_float_mult real_of_float_0
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   937
    using mult_pos_pos[where a="real x" and b="real x"] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   938
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   939
  { 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))
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   940
    = (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * x ^ i)" (is "?SUM = _")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   941
    proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   942
      have pow: "!!i. x ^ (2 * i + 1) = x * x ^ (2 * i)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   943
      have "?SUM = (\<Sum> j = 0 ..< n. 0) + ?SUM" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   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)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   945
        unfolding sum_split_even_odd ..
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   946
      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)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   947
        by (rule setsum_cong2) auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   948
      finally show ?thesis by assumption
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   949
    qed } note setsum_morph = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   950
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   951
  { fix n :: nat assume "0 < n"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   952
    hence "0 < 2 * n + 1" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   953
    obtain t where "0 < t" and "t < real x" and
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   954
      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)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   955
      + (sin (t + 1/2 * (2 * n + 1) * pi) / real (fact (2*n + 1))) * (real x)^(2*n + 1)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   956
      (is "_ = ?SUM + ?rest / ?fact * ?pow")
44306
33572a766836 fold definitions of sin_coeff and cos_coeff in Maclaurin lemmas
huffman
parents: 44305
diff changeset
   957
      using Maclaurin_sin_expansion3[OF `0 < 2 * n + 1` `0 < real x`]
33572a766836 fold definitions of sin_coeff and cos_coeff in Maclaurin lemmas
huffman
parents: 44305
diff changeset
   958
      unfolding sin_coeff_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   959
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   960
    have "?rest = cos t * -1^n" unfolding sin_add cos_add real_of_nat_add left_distrib right_distrib by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   961
    moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   962
    have "t \<le> pi / 2" using `t < real x` and `x \<le> pi / 2` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   963
    hence "0 \<le> cos t" using `0 < t` and cos_ge_zero by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   964
    ultimately have even: "even n \<Longrightarrow> 0 \<le> ?rest" and odd: "odd n \<Longrightarrow> 0 \<le> - ?rest " by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   965
44305
3bdc02eb1637 remove some redundant simp rules
huffman
parents: 42361
diff changeset
   966
    have "0 < ?fact" by (simp del: fact_Suc)
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   967
    have "0 < ?pow" using `0 < real x` by (rule zero_less_power)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   968
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   969
    {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   970
      assume "even n"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   971
      have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le>
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   972
            (\<Sum> i = 0 ..< 2 * n. (if even(i) then 0 else (-1 ^ ((i - Suc 0) div 2))/(real (fact i))) * (real x) ^ i)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   973
        using sin_aux[OF `0 \<le> real x`] unfolding setsum_morph[symmetric] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   974
      also have "\<dots> \<le> ?SUM" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   975
      also have "\<dots> \<le> sin x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   976
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   977
        from even[OF `even n`] `0 < ?fact` `0 < ?pow`
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   978
        have "0 \<le> (?rest / ?fact) * ?pow" by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   979
        thus ?thesis unfolding sin_eq by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   980
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   981
      finally have "(x * lb_sin_cos_aux prec n 2 1 (x * x)) \<le> sin x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   982
    } note lb = this
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   983
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   984
    {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   985
      assume "odd n"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   986
      have "sin x \<le> ?SUM"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   987
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   988
        from `0 < ?fact` and `0 < ?pow` and odd[OF `odd n`]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   989
        have "0 \<le> (- ?rest) / ?fact * ?pow"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   990
          by (metis mult_nonneg_nonneg divide_nonneg_pos less_imp_le)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   991
        thus ?thesis unfolding sin_eq by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   992
      qed
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
   993
      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)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   994
         by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   995
      also have "\<dots> \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
   996
        using sin_aux[OF `0 \<le> real x`] unfolding setsum_morph[symmetric] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
   997
      finally have "sin x \<le> (x * ub_sin_cos_aux prec n 2 1 (x * x))" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   998
    } note ub = this and lb
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
   999
  } note ub = this(1) and lb = this(2)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1000
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1001
  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] .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1002
  moreover have "(x * lb_sin_cos_aux prec (get_even n) 2 1 (x * x)) \<le> sin x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1003
  proof (cases "0 < get_even n")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1004
    case True show ?thesis using lb[OF True get_even] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1005
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1006
    case False
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1007
    hence "get_even n = 0" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1008
    with `x \<le> pi / 2` `0 \<le> real x`
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1009
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1010
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1011
  ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1012
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1013
  case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1014
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1015
  proof (cases "n = 0")
31809
hoelzl
parents: 31790
diff changeset
  1016
    case True
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1017
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1018
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1019
    case False with not0_implies_Suc obtain m where "n = Suc m" by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1020
    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)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1021
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1022
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1023
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1024
subsection "Compute the cosinus in the entire domain"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1025
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1026
definition lb_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1027
"lb_cos prec x = (let
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1028
    horner = \<lambda> x. lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x) ;
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1029
    half = \<lambda> x. if x < 0 then - 1 else Float 1 1 * x * x - 1
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1030
  in if x < Float 1 -1 then horner x
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1031
else if x < 1          then half (horner (x * Float 1 -1))
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1032
                       else half (half (horner (x * Float 1 -2))))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1033
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1034
definition ub_cos :: "nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1035
"ub_cos prec x = (let
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1036
    horner = \<lambda> x. ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x) ;
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1037
    half = \<lambda> x. Float 1 1 * x * x - 1
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1038
  in if x < Float 1 -1 then horner x
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1039
else if x < 1          then half (horner (x * Float 1 -1))
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1040
                       else half (half (horner (x * Float 1 -2))))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1041
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1042
lemma lb_cos: assumes "0 \<le> real x" and "x \<le> pi"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1043
  shows "cos x \<in> {(lb_cos prec x) .. (ub_cos prec x)}" (is "?cos x \<in> {(?lb x) .. (?ub x) }")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1044
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1045
  { fix x :: real
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1046
    have "cos x = cos (x / 2 + x / 2)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1047
    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"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1048
      unfolding cos_add by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1049
    also have "\<dots> = 2 * cos (x / 2) * cos (x / 2) - 1" by algebra
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1050
    finally have "cos x = 2 * cos (x / 2) * cos (x / 2) - 1" .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1051
  } note x_half = this[symmetric]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1052
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1053
  have "\<not> x < 0" using `0 \<le> real x` unfolding less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1054
  let "?ub_horner x" = "ub_sin_cos_aux prec (get_odd (prec div 4 + 1)) 1 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1055
  let "?lb_horner x" = "lb_sin_cos_aux prec (get_even (prec div 4 + 1)) 1 1 (x * x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1056
  let "?ub_half x" = "Float 1 1 * x * x - 1"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1057
  let "?lb_half x" = "if x < 0 then - 1 else Float 1 1 * x * x - 1"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1058
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1059
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1060
  proof (cases "x < Float 1 -1")
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1061
    case True hence "x \<le> pi / 2" unfolding less_float_def using pi_ge_two by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1062
    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
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1063
      using cos_boundaries[OF `0 \<le> real x` `x \<le> pi / 2`] .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1064
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1065
    case False
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1066
    { fix y x :: float let ?x2 = "(x * Float 1 -1)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1067
      assume "y \<le> cos ?x2" and "-pi \<le> x" and "x \<le> pi"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1068
      hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" using pi_ge_two unfolding real_of_float_mult Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1069
      hence "0 \<le> cos ?x2" by (rule cos_ge_zero)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1070
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1071
      have "(?lb_half y) \<le> cos x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1072
      proof (cases "y < 0")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1073
        case True show ?thesis using cos_ge_minus_one unfolding if_P[OF True] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1074
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1075
        case False
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1076
        hence "0 \<le> real y" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1077
        from mult_mono[OF `y \<le> cos ?x2` `y \<le> cos ?x2` `0 \<le> cos ?x2` this]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1078
        have "real y * real y \<le> cos ?x2 * cos ?x2" .
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1079
        hence "2 * real y * real y \<le> 2 * cos ?x2 * cos ?x2" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1080
        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
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1081
        thus ?thesis unfolding if_not_P[OF False] x_half Float_num real_of_float_mult real_of_float_sub by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1082
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1083
    } note lb_half = this
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1084
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1085
    { fix y x :: float let ?x2 = "(x * Float 1 -1)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1086
      assume ub: "cos ?x2 \<le> y" and "- pi \<le> x" and "x \<le> pi"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1087
      hence "- (pi / 2) \<le> ?x2" and "?x2 \<le> pi / 2" using pi_ge_two unfolding real_of_float_mult Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1088
      hence "0 \<le> cos ?x2" by (rule cos_ge_zero)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1089
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1090
      have "cos x \<le> (?ub_half y)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1091
      proof -
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1092
        have "0 \<le> real y" using `0 \<le> cos ?x2` ub by (rule order_trans)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1093
        from mult_mono[OF ub ub this `0 \<le> cos ?x2`]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1094
        have "cos ?x2 * cos ?x2 \<le> real y * real y" .
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1095
        hence "2 * cos ?x2 * cos ?x2 \<le> 2 * real y * real y" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1096
        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
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1097
        thus ?thesis unfolding x_half real_of_float_mult Float_num real_of_float_sub by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1098
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1099
    } note ub_half = this
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1100
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1101
    let ?x2 = "x * Float 1 -1"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1102
    let ?x4 = "x * Float 1 -1 * Float 1 -1"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1103
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1104
    have "-pi \<le> x" using pi_ge_zero[THEN le_imp_neg_le, unfolded minus_zero] `0 \<le> real x` by (rule order_trans)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1105
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1106
    show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1107
    proof (cases "x < 1")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1108
      case True hence "real x \<le> 1" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1109
      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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1110
      from cos_boundaries[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1111
      have lb: "(?lb_horner ?x2) \<le> ?cos ?x2" and ub: "?cos ?x2 \<le> (?ub_horner ?x2)" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1112
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1113
      have "(?lb x) \<le> ?cos x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1114
      proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1115
        from lb_half[OF lb `-pi \<le> x` `x \<le> pi`]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1116
        show ?thesis unfolding lb_cos_def[where x=x] Let_def using `\<not> x < 0` `\<not> x < Float 1 -1` `x < 1` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1117
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1118
      moreover have "?cos x \<le> (?ub x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1119
      proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1120
        from ub_half[OF ub `-pi \<le> x` `x \<le> pi`]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1121
        show ?thesis unfolding ub_cos_def[where x=x] Let_def using `\<not> x < 0` `\<not> x < Float 1 -1` `x < 1` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1122
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1123
      ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1124
    next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1125
      case False
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1126
      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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1127
      from cos_boundaries[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1128
      have lb: "(?lb_horner ?x4) \<le> ?cos ?x4" and ub: "?cos ?x4 \<le> (?ub_horner ?x4)" by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1129
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1130
      have eq_4: "?x2 * Float 1 -1 = x * Float 1 -2" by (cases x, auto simp add: times_float.simps)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1131
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1132
      have "(?lb x) \<le> ?cos x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1133
      proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1134
        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
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1135
        from lb_half[OF lb_half[OF lb this] `-pi \<le> x` `x \<le> pi`, unfolded eq_4]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1136
        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 .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1137
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1138
      moreover have "?cos x \<le> (?ub x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1139
      proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1140
        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
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1141
        from ub_half[OF ub_half[OF ub this] `-pi \<le> x` `x \<le> pi`, unfolded eq_4]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1142
        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 .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1143
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1144
      ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1145
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1146
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1147
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1148
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1149
lemma lb_cos_minus: assumes "-pi \<le> x" and "real x \<le> 0"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1150
  shows "cos (real(-x)) \<in> {(lb_cos prec (-x)) .. (ub_cos prec (-x))}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1151
proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1152
  have "0 \<le> real (-x)" and "(-x) \<le> pi" using `-pi \<le> x` `real x \<le> 0` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1153
  from lb_cos[OF this] show ?thesis .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1154
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1155
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1156
definition bnds_cos :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float * float" where
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1157
"bnds_cos prec lx ux = (let
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1158
    lpi = round_down prec (lb_pi prec) ;
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1159
    upi = round_up prec (ub_pi prec) ;
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1160
    k = floor_fl (float_divr prec (lx + lpi) (2 * lpi)) ;
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1161
    lx = lx - k * 2 * (if k < 0 then lpi else upi) ;
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1162
    ux = ux - k * 2 * (if k < 0 then upi else lpi)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1163
  in   if - lpi \<le> lx \<and> ux \<le> 0    then (lb_cos prec (-lx), ub_cos prec (-ux))
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1164
  else if 0 \<le> lx \<and> ux \<le> lpi      then (lb_cos prec ux, ub_cos prec lx)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1165
  else if - lpi \<le> lx \<and> ux \<le> lpi  then (min (lb_cos prec (-lx)) (lb_cos prec ux), Float 1 0)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1166
  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))))
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1167
  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)))
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1168
                                 else (Float -1 0, Float 1 0))"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1169
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1170
lemma floor_int:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1171
  obtains k :: int where "real k = (floor_fl f)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1172
proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1173
  assume *: "\<And> k :: int. real k = (floor_fl f) \<Longrightarrow> thesis"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1174
  obtain m e where fl: "Float m e = floor_fl f" by (cases "floor_fl f", auto)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1175
  from floor_pos_exp[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1176
  have "real (m* 2^(nat e)) = (floor_fl f)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1177
    by (auto simp add: fl[symmetric] real_of_float_def pow2_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1178
  from *[OF this] show thesis by blast
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1179
qed
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1180
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1181
lemma cos_periodic_nat[simp]: fixes n :: nat shows "cos (x + n * (2 * pi)) = cos x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1182
proof (induct n arbitrary: x)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1183
  case (Suc n)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1184
  have split_pi_off: "x + (Suc n) * (2 * pi) = (x + n * (2 * pi)) + 2 * pi"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  1185
    unfolding Suc_eq_plus1 real_of_nat_add real_of_one left_distrib by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1186
  show ?case unfolding split_pi_off using Suc by auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1187
qed auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1188
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1189
lemma cos_periodic_int[simp]: fixes i :: int shows "cos (x + i * (2 * pi)) = cos x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1190
proof (cases "0 \<le> i")
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1191
  case True hence i_nat: "real i = nat i" by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1192
  show ?thesis unfolding i_nat by auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1193
next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1194
  case False hence i_nat: "i = - real (nat (-i))" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1195
  have "cos x = cos (x + i * (2 * pi) - i * (2 * pi))" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1196
  also have "\<dots> = cos (x + i * (2 * pi))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1197
    unfolding i_nat mult_minus_left diff_minus_eq_add by (rule cos_periodic_nat)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1198
  finally show ?thesis by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1199
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1200
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1201
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"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1202
proof ((rule allI | rule impI | erule conjE) +)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1203
  fix x :: real fix lx ux
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1204
  assume bnds: "(l, u) = bnds_cos prec lx ux" and x: "x \<in> {lx .. ux}"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1205
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1206
  let ?lpi = "round_down prec (lb_pi prec)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1207
  let ?upi = "round_up prec (ub_pi prec)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1208
  let ?k = "floor_fl (float_divr prec (lx + ?lpi) (2 * ?lpi))"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1209
  let ?lx = "lx - ?k * 2 * (if ?k < 0 then ?lpi else ?upi)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1210
  let ?ux = "ux - ?k * 2 * (if ?k < 0 then ?upi else ?lpi)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1211
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1212
  obtain k :: int where k: "k = real ?k" using floor_int .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1213
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1214
  have upi: "pi \<le> ?upi" and lpi: "?lpi \<le> pi"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1215
    using round_up[of "ub_pi prec" prec] pi_boundaries[of prec]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1216
          round_down[of prec "lb_pi prec"] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1217
  hence "?lx \<le> x - k * (2 * pi) \<and> x - k * (2 * pi) \<le> ?ux"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1218
    using x by (cases "k = 0") (auto intro!: add_mono
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1219
                simp add: diff_minus k[symmetric] less_float_def)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1220
  note lx = this[THEN conjunct1] and ux = this[THEN conjunct2]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1221
  hence lx_less_ux: "?lx \<le> real ?ux" by (rule order_trans)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1222
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1223
  { assume "- ?lpi \<le> ?lx" and x_le_0: "x - k * (2 * pi) \<le> 0"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1224
    with lpi[THEN le_imp_neg_le] lx
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1225
    have pi_lx: "- pi \<le> ?lx" and lx_0: "real ?lx \<le> 0"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1226
      by (simp_all add: le_float_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1227
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1228
    have "(lb_cos prec (- ?lx)) \<le> cos (real (- ?lx))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1229
      using lb_cos_minus[OF pi_lx lx_0] by simp
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1230
    also have "\<dots> \<le> cos (x + (-k) * (2 * pi))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1231
      using cos_monotone_minus_pi_0'[OF pi_lx lx x_le_0]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1232
      by (simp only: real_of_float_minus real_of_int_minus
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1233
        cos_minus diff_minus mult_minus_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1234
    finally have "(lb_cos prec (- ?lx)) \<le> cos x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1235
      unfolding cos_periodic_int . }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1236
  note negative_lx = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1237
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1238
  { assume "0 \<le> ?lx" and pi_x: "x - k * (2 * pi) \<le> pi"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1239
    with lx
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1240
    have pi_lx: "?lx \<le> pi" and lx_0: "0 \<le> real ?lx"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1241
      by (auto simp add: le_float_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1242
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1243
    have "cos (x + (-k) * (2 * pi)) \<le> cos ?lx"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1244
      using cos_monotone_0_pi'[OF lx_0 lx pi_x]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1245
      by (simp only: real_of_float_minus real_of_int_minus
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1246
        cos_minus diff_minus mult_minus_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1247
    also have "\<dots> \<le> (ub_cos prec ?lx)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1248
      using lb_cos[OF lx_0 pi_lx] by simp
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1249
    finally have "cos x \<le> (ub_cos prec ?lx)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1250
      unfolding cos_periodic_int . }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1251
  note positive_lx = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1252
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1253
  { assume pi_x: "- pi \<le> x - k * (2 * pi)" and "?ux \<le> 0"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1254
    with ux
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1255
    have pi_ux: "- pi \<le> ?ux" and ux_0: "real ?ux \<le> 0"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1256
      by (simp_all add: le_float_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1257
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1258
    have "cos (x + (-k) * (2 * pi)) \<le> cos (real (- ?ux))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1259
      using cos_monotone_minus_pi_0'[OF pi_x ux ux_0]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1260
      by (simp only: real_of_float_minus real_of_int_minus
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1261
          cos_minus diff_minus mult_minus_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1262
    also have "\<dots> \<le> (ub_cos prec (- ?ux))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1263
      using lb_cos_minus[OF pi_ux ux_0, of prec] by simp
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1264
    finally have "cos x \<le> (ub_cos prec (- ?ux))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1265
      unfolding cos_periodic_int . }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1266
  note negative_ux = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1267
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1268
  { assume "?ux \<le> ?lpi" and x_ge_0: "0 \<le> x - k * (2 * pi)"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1269
    with lpi ux
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1270
    have pi_ux: "?ux \<le> pi" and ux_0: "0 \<le> real ?ux"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1271
      by (simp_all add: le_float_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1272
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1273
    have "(lb_cos prec ?ux) \<le> cos ?ux"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1274
      using lb_cos[OF ux_0 pi_ux] by simp
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1275
    also have "\<dots> \<le> cos (x + (-k) * (2 * pi))"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1276
      using cos_monotone_0_pi'[OF x_ge_0 ux pi_ux]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1277
      by (simp only: real_of_float_minus real_of_int_minus
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1278
        cos_minus diff_minus mult_minus_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1279
    finally have "(lb_cos prec ?ux) \<le> cos x"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1280
      unfolding cos_periodic_int . }
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1281
  note positive_ux = this
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1282
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1283
  show "l \<le> cos x \<and> cos x \<le> u"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1284
  proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> 0")
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1285
    case True with bnds
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1286
    have l: "l = lb_cos prec (-?lx)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1287
      and u: "u = ub_cos prec (-?ux)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1288
      by (auto simp add: bnds_cos_def Let_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1289
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1290
    from True lpi[THEN le_imp_neg_le] lx ux
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1291
    have "- pi \<le> x - k * (2 * pi)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1292
      and "x - k * (2 * pi) \<le> 0"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1293
      by (auto simp add: le_float_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1294
    with True negative_ux negative_lx
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1295
    show ?thesis unfolding l u by simp
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1296
  next case False note 1 = this show ?thesis
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1297
  proof (cases "0 \<le> ?lx \<and> ?ux \<le> ?lpi")
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1298
    case True with bnds 1
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1299
    have l: "l = lb_cos prec ?ux"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1300
      and u: "u = ub_cos prec ?lx"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1301
      by (auto simp add: bnds_cos_def Let_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1302
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1303
    from True lpi lx ux
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1304
    have "0 \<le> x - k * (2 * pi)"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1305
      and "x - k * (2 * pi) \<le> pi"
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1306
      by (auto simp add: le_float_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1307
    with True positive_ux positive_lx
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1308
    show ?thesis unfolding l u by simp
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1309
  next case False note 2 = this show ?thesis
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1310
  proof (cases "- ?lpi \<le> ?lx \<and> ?ux \<le> ?lpi")
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1311
    case True note Cond = this with bnds 1 2
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1312
    have l: "l = min (lb_cos prec (-?lx)) (lb_cos prec ?ux)"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1313
      and u: "u = Float 1 0"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1314
      by (auto simp add: bnds_cos_def Let_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1315
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1316
    show ?thesis unfolding u l using negative_lx positive_ux Cond
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1317
      by (cases "x - k * (2 * pi) < 0", simp_all add: real_of_float_min)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1318
  next case False note 3 = this show ?thesis
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1319
  proof (cases "0 \<le> ?lx \<and> ?ux \<le> 2 * ?lpi")
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1320
    case True note Cond = this with bnds 1 2 3
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1321
    have l: "l = Float -1 0"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1322
      and u: "u = max (ub_cos prec ?lx) (ub_cos prec (- (?ux - 2 * ?lpi)))"
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1323
      by (auto simp add: bnds_cos_def Let_def)
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1324
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1325
    have "cos x \<le> real u"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1326
    proof (cases "x - k * (2 * pi) < pi")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1327
      case True hence "x - k * (2 * pi) \<le> pi" by simp
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1328
      from positive_lx[OF Cond[THEN conjunct1] this]
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1329
      show ?thesis unfolding u by (simp add: real_of_float_max)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1330
    next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1331
      case False hence "pi \<le> x - k * (2 * pi)" by simp
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1332
      hence pi_x: "- pi \<le> x - k * (2 * pi) - 2 * pi" by simp
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1333
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1334
      have "?ux \<le> 2 * pi" using Cond lpi by (auto simp add: le_float_def)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1335
      hence "x - k * (2 * pi) - 2 * pi \<le> 0" using ux by simp
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1336
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1337
      have ux_0: "real (?ux - 2 * ?lpi) \<le> 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1338
        using Cond by (auto simp add: le_float_def)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1339
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1340
      from 2 and Cond have "\<not> ?ux \<le> ?lpi" by auto
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1341
      hence "- ?lpi \<le> ?ux - 2 * ?lpi" by (auto simp add: le_float_def)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1342
      hence pi_ux: "- pi \<le> (?ux - 2 * ?lpi)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1343
        using lpi[THEN le_imp_neg_le] by (auto simp add: le_float_def)
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1344
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1345
      have x_le_ux: "x - k * (2 * pi) - 2 * pi \<le> (?ux - 2 * ?lpi)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1346
        using ux lpi by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1347
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1348
      have "cos x = cos (x + (-k) * (2 * pi) + (-1::int) * (2 * pi))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1349
        unfolding cos_periodic_int ..
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1350
      also have "\<dots> \<le> cos ((?ux - 2 * ?lpi))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1351
        using cos_monotone_minus_pi_0'[OF pi_x x_le_ux ux_0]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1352
        by (simp only: real_of_float_minus real_of_int_minus real_of_one
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1353
            number_of_Min diff_minus mult_minus_left mult_1_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1354
      also have "\<dots> = cos ((- (?ux - 2 * ?lpi)))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1355
        unfolding real_of_float_minus cos_minus ..
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1356
      also have "\<dots> \<le> (ub_cos prec (- (?ux - 2 * ?lpi)))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1357
        using lb_cos_minus[OF pi_ux ux_0] by simp
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1358
      finally show ?thesis unfolding u by (simp add: real_of_float_max)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1359
    qed
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1360
    thus ?thesis unfolding l by auto
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1361
  next case False note 4 = this show ?thesis
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1362
  proof (cases "-2 * ?lpi \<le> ?lx \<and> ?ux \<le> 0")
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1363
    case True note Cond = this with bnds 1 2 3 4
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1364
    have l: "l = Float -1 0"
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1365
      and u: "u = max (ub_cos prec (?lx + 2 * ?lpi)) (ub_cos prec (-?ux))"
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1366
      by (auto simp add: bnds_cos_def Let_def)
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1367
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1368
    have "cos x \<le> u"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1369
    proof (cases "-pi < x - k * (2 * pi)")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1370
      case True hence "-pi \<le> x - k * (2 * pi)" by simp
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1371
      from negative_ux[OF this Cond[THEN conjunct2]]
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1372
      show ?thesis unfolding u by (simp add: real_of_float_max)
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1373
    next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1374
      case False hence "x - k * (2 * pi) \<le> -pi" by simp
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1375
      hence pi_x: "x - k * (2 * pi) + 2 * pi \<le> pi" by simp
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1376
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1377
      have "-2 * pi \<le> ?lx" using Cond lpi by (auto simp add: le_float_def)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1378
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1379
      hence "0 \<le> x - k * (2 * pi) + 2 * pi" using lx by simp
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1380
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1381
      have lx_0: "0 \<le> real (?lx + 2 * ?lpi)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1382
        using Cond lpi by (auto simp add: le_float_def)
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1383
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1384
      from 1 and Cond have "\<not> -?lpi \<le> ?lx" by auto
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1385
      hence "?lx + 2 * ?lpi \<le> ?lpi" by (auto simp add: le_float_def)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1386
      hence pi_lx: "(?lx + 2 * ?lpi) \<le> pi"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1387
        using lpi[THEN le_imp_neg_le] by (auto simp add: le_float_def)
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1388
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1389
      have lx_le_x: "(?lx + 2 * ?lpi) \<le> x - k * (2 * pi) + 2 * pi"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1390
        using lx lpi by auto
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1391
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1392
      have "cos x = cos (x + (-k) * (2 * pi) + (1 :: int) * (2 * pi))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1393
        unfolding cos_periodic_int ..
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1394
      also have "\<dots> \<le> cos ((?lx + 2 * ?lpi))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1395
        using cos_monotone_0_pi'[OF lx_0 lx_le_x pi_x]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1396
        by (simp only: real_of_float_minus real_of_int_minus real_of_one
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  1397
          number_of_Min diff_minus mult_minus_left mult_1_left)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1398
      also have "\<dots> \<le> (ub_cos prec (?lx + 2 * ?lpi))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1399
        using lb_cos[OF lx_0 pi_lx] by simp
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1400
      finally show ?thesis unfolding u by (simp add: real_of_float_max)
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1401
    qed
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1402
    thus ?thesis unfolding l by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1403
  next
31508
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1404
    case False with bnds 1 2 3 4 show ?thesis by (auto simp add: bnds_cos_def Let_def)
1ea1c70aba00 Better approximation of cos around pi.
hoelzl
parents: 31468
diff changeset
  1405
  qed qed qed qed qed
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1406
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1407
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1408
section "Exponential function"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1409
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1410
subsection "Compute the series of the exponential function"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1411
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1412
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
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1413
"ub_exp_horner prec 0 i k x       = 0" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1414
"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" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1415
"lb_exp_horner prec 0 i k x       = 0" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1416
"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"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1417
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1418
lemma bnds_exp_horner: assumes "real x \<le> 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1419
  shows "exp x \<in> { lb_exp_horner prec (get_even n) 1 1 x .. ub_exp_horner prec (get_odd n) 1 1 x }"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1420
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1421
  { fix n
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30968
diff changeset
  1422
    have F: "\<And> m. ((\<lambda>i. i + 1) ^^ n) m = n + m" by (induct n, auto)
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30968
diff changeset
  1423
    have "fact (Suc n) = fact n * ((\<lambda>i. i + 1) ^^ n) 1" unfolding F by auto } note f_eq = this
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  1424
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1425
  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,
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1426
    OF assms f_eq lb_exp_horner.simps ub_exp_horner.simps]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1427
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1428
  { 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)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1429
      using bounds(1) by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1430
    also have "\<dots> \<le> exp x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1431
    proof -
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1432
      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)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1433
        using Maclaurin_exp_le by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1434
      moreover have "0 \<le> exp t / real (fact (get_even n)) * (real x) ^ (get_even n)"
46545
haftmann
parents: 45481
diff changeset
  1435
        by (auto intro!: mult_nonneg_nonneg divide_nonneg_pos simp add: zero_le_even_power)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1436
      ultimately show ?thesis
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33030
diff changeset
  1437
        using get_odd exp_gt_zero by (auto intro!: mult_nonneg_nonneg)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1438
    qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1439
    finally have "lb_exp_horner prec (get_even n) 1 1 x \<le> exp x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1440
  } moreover
31809
hoelzl
parents: 31790
diff changeset
  1441
  {
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1442
    have x_less_zero: "real x ^ get_odd n \<le> 0"
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1443
    proof (cases "real x = 0")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1444
      case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1445
      have "(get_odd n) \<noteq> 0" using get_odd[THEN odd_pos] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1446
      thus ?thesis unfolding True power_0_left by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1447
    next
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1448
      case False hence "real x < 0" using `real x \<le> 0` by auto
46545
haftmann
parents: 45481
diff changeset
  1449
      show ?thesis by (rule less_imp_le, auto simp add: power_less_zero_eq `real x < 0`)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1450
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1451
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1452
    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)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1453
      using Maclaurin_exp_le by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1454
    moreover have "exp t / real (fact (get_odd n)) * (real x) ^ (get_odd n) \<le> 0"
46545
haftmann
parents: 45481
diff changeset
  1455
      by (auto intro!: mult_nonneg_nonpos divide_nonpos_pos simp add: x_less_zero)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1456
    ultimately have "exp x \<le> (\<Sum>j = 0..<get_odd n. 1 / real (fact j) * real x ^ j)"
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33030
diff changeset
  1457
      using get_odd exp_gt_zero by (auto intro!: mult_nonneg_nonneg)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1458
    also have "\<dots> \<le> ub_exp_horner prec (get_odd n) 1 1 x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1459
      using bounds(2) by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1460
    finally have "exp x \<le> ub_exp_horner prec (get_odd n) 1 1 x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1461
  } ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1462
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1463
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1464
subsection "Compute the exponential function on the entire domain"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1465
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1466
function ub_exp :: "nat \<Rightarrow> float \<Rightarrow> float" and lb_exp :: "nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1467
"lb_exp prec x = (if 0 < x then float_divl prec 1 (ub_exp prec (-x))
31809
hoelzl
parents: 31790
diff changeset
  1468
             else let
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1469
                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)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1470
             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))
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1471
                           else horner x)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1472
"ub_exp prec x = (if 0 < x    then float_divr prec 1 (lb_exp prec (-x))
31809
hoelzl
parents: 31790
diff changeset
  1473
             else if x < - 1  then (case floor_fl x of (Float m e) \<Rightarrow>
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1474
                                    (ub_exp_horner prec (get_odd (prec + 2)) 1 1 (float_divr prec x (- Float m e))) ^ (nat (-m) * 2 ^ nat e))
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1475
                              else ub_exp_horner prec (get_odd (prec + 2)) 1 1 x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1476
by pat_completeness auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1477
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)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1478
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1479
lemma exp_m1_ge_quarter: "(1 / 4 :: real) \<le> exp (- 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1480
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1481
  have eq4: "4 = Suc (Suc (Suc (Suc 0)))" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1482
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1483
  have "1 / 4 = (Float 1 -2)" unfolding Float_num by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1484
  also have "\<dots> \<le> lb_exp_horner 1 (get_even 4) 1 1 (- 1)"
31809
hoelzl
parents: 31790
diff changeset
  1485
    unfolding get_even_def eq4
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1486
    by (auto simp add: lapprox_posrat_def rapprox_posrat_def normfloat.simps)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1487
  also have "\<dots> \<le> exp (- 1 :: float)" using bnds_exp_horner[where x="- 1"] by auto
31809
hoelzl
parents: 31790
diff changeset
  1488
  finally show ?thesis unfolding real_of_float_minus real_of_float_1 .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1489
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1490
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1491
lemma lb_exp_pos: assumes "\<not> 0 < x" shows "0 < lb_exp prec x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1492
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1493
  let "?lb_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1494
  let "?horner x" = "let  y = ?lb_horner x  in if y \<le> 0 then Float 1 -2 else y"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1495
  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)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1496
  moreover { fix x :: float fix num :: nat
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1497
    have "0 < real (?horner x) ^ num" using `0 < ?horner x`[unfolded less_float_def real_of_float_0] by (rule zero_less_power)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1498
    also have "\<dots> = (?horner x) ^ num" using float_power by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1499
    finally have "0 < real ((?horner x) ^ num)" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1500
  }
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1501
  ultimately show ?thesis
30968
10fef94f40fc adaptions due to rearrangment of power operation
haftmann
parents: 30952
diff changeset
  1502
    unfolding lb_exp.simps if_not_P[OF `\<not> 0 < x`] Let_def
10fef94f40fc adaptions due to rearrangment of power operation
haftmann
parents: 30952
diff changeset
  1503
    by (cases "floor_fl x", cases "x < - 1", auto simp add: float_power le_float_def less_float_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1504
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1505
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1506
lemma exp_boundaries': assumes "x \<le> 0"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1507
  shows "exp x \<in> { (lb_exp prec x) .. (ub_exp prec x)}"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1508
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1509
  let "?lb_exp_horner x" = "lb_exp_horner prec (get_even (prec + 2)) 1 1 x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1510
  let "?ub_exp_horner x" = "ub_exp_horner prec (get_odd (prec + 2)) 1 1 x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1511
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1512
  have "real x \<le> 0" and "\<not> x > 0" using `x \<le> 0` unfolding le_float_def less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1513
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1514
  proof (cases "x < - 1")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1515
    case False hence "- 1 \<le> real x" unfolding less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1516
    show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1517
    proof (cases "?lb_exp_horner x \<le> 0")
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1518
      from `\<not> x < - 1` have "- 1 \<le> real x" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1519
      hence "exp (- 1) \<le> exp x" unfolding exp_le_cancel_iff .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1520
      from order_trans[OF exp_m1_ge_quarter this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1521
      have "Float 1 -2 \<le> exp x" unfolding Float_num .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1522
      moreover case True
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1523
      ultimately show ?thesis using bnds_exp_horner `real x \<le> 0` `\<not> x > 0` `\<not> x < - 1` by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1524
    next
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1525
      case False thus ?thesis using bnds_exp_horner `real x \<le> 0` `\<not> x > 0` `\<not> x < - 1` by (auto simp add: Let_def)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1526
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1527
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1528
    case True
31809
hoelzl
parents: 31790
diff changeset
  1529
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1530
    obtain m e where Float_floor: "floor_fl x = Float m e" by (cases "floor_fl x", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1531
    let ?num = "nat (- m) * 2 ^ nat e"
31809
hoelzl
parents: 31790
diff changeset
  1532
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1533
    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)
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1534
    hence "real (floor_fl x) < 0" unfolding Float_floor real_of_float_simp using zero_less_pow2[of xe] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1535
    hence "m < 0"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1536
      unfolding less_float_def real_of_float_0 Float_floor real_of_float_simp
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  1537
      unfolding pos_prod_lt[OF zero_less_pow2[of e], unfolded mult_commute] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1538
    hence "1 \<le> - m" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1539
    hence "0 < nat (- m)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1540
    moreover
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1541
    have "0 \<le> e" using floor_pos_exp Float_floor[symmetric] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1542
    hence "(0::nat) < 2 ^ nat e" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1543
    ultimately have "0 < ?num"  by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1544
    hence "real ?num \<noteq> 0" by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1545
    have e_nat: "(nat e) = e" using `0 \<le> e` by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1546
    have num_eq: "real ?num = - floor_fl x" using `0 < nat (- m)`
35346
8e1f994c6e54 adapt to new realpow rules
huffman
parents: 35082
diff changeset
  1547
      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
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1548
    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 .
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1549
    hence "real (floor_fl x) < 0" unfolding less_float_def by auto
31809
hoelzl
parents: 31790
diff changeset
  1550
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1551
    have "exp x \<le> ub_exp prec x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1552
    proof -
31809
hoelzl
parents: 31790
diff changeset
  1553
      have div_less_zero: "real (float_divr prec x (- floor_fl x)) \<le> 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1554
        using float_divr_nonpos_pos_upper_bound[OF `x \<le> 0` `0 < - floor_fl x`] unfolding le_float_def real_of_float_0 .
31809
hoelzl
parents: 31790
diff changeset
  1555
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1556
      have "exp x = exp (?num * (x / ?num))" using `real ?num \<noteq> 0` by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1557
      also have "\<dots> = exp (x / ?num) ^ ?num" unfolding exp_real_of_nat_mult ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1558
      also have "\<dots> \<le> exp (float_divr prec x (- floor_fl x)) ^ ?num" unfolding num_eq
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1559
        by (rule power_mono, rule exp_le_cancel_iff[THEN iffD2], rule float_divr) auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1560
      also have "\<dots> \<le> (?ub_exp_horner (float_divr prec x (- floor_fl x))) ^ ?num" unfolding float_power
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1561
        by (rule power_mono, rule bnds_exp_horner[OF div_less_zero, unfolded atLeastAtMost_iff, THEN conjunct2], auto)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1562
      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 .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1563
    qed
31809
hoelzl
parents: 31790
diff changeset
  1564
    moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1565
    have "lb_exp prec x \<le> exp x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1566
    proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1567
      let ?divl = "float_divl prec x (- Float m e)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1568
      let ?horner = "?lb_exp_horner ?divl"
31809
hoelzl
parents: 31790
diff changeset
  1569
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1570
      show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1571
      proof (cases "?horner \<le> 0")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1572
        case False hence "0 \<le> real ?horner" unfolding le_float_def by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1573
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1574
        have div_less_zero: "real (float_divl prec x (- floor_fl x)) \<le> 0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1575
          using `real (floor_fl x) < 0` `real x \<le> 0` by (auto intro!: order_trans[OF float_divl] divide_nonpos_neg)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1576
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1577
        have "(?lb_exp_horner (float_divl prec x (- floor_fl x))) ^ ?num \<le>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1578
          exp (float_divl prec x (- floor_fl x)) ^ ?num" unfolding float_power
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1579
          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)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1580
        also have "\<dots> \<le> exp (x / ?num) ^ ?num" unfolding num_eq
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1581
          using float_divl by (auto intro!: power_mono simp del: real_of_float_minus)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1582
        also have "\<dots> = exp (?num * (x / ?num))" unfolding exp_real_of_nat_mult ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1583
        also have "\<dots> = exp x" using `real ?num \<noteq> 0` by auto
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1584
        finally show ?thesis
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1585
          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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1586
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1587
        case True
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1588
        have "real (floor_fl x) \<noteq> 0" and "real (floor_fl x) \<le> 0" using `real (floor_fl x) < 0` by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1589
        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`]]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1590
        have "- 1 \<le> x / (- floor_fl x)" unfolding real_of_float_minus by auto
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1591
        from order_trans[OF exp_m1_ge_quarter this[unfolded exp_le_cancel_iff[where x="- 1", symmetric]]]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1592
        have "Float 1 -2 \<le> exp (x / (- floor_fl x))" unfolding Float_num .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1593
        hence "real (Float 1 -2) ^ ?num \<le> exp (x / (- floor_fl x)) ^ ?num"
46545
haftmann
parents: 45481
diff changeset
  1594
          by (auto intro!: power_mono)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1595
        also have "\<dots> = exp x" unfolding num_eq exp_real_of_nat_mult[symmetric] using `real (floor_fl x) \<noteq> 0` by auto
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1596
        finally show ?thesis
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1597
          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 .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1598
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1599
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1600
    ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1601
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1602
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1603
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1604
lemma exp_boundaries: "exp x \<in> { lb_exp prec x .. ub_exp prec x }"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1605
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1606
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1607
  proof (cases "0 < x")
31809
hoelzl
parents: 31790
diff changeset
  1608
    case False hence "x \<le> 0" unfolding less_float_def le_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1609
    from exp_boundaries'[OF this] show ?thesis .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1610
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1611
    case True hence "-x \<le> 0" unfolding less_float_def le_float_def by auto
31809
hoelzl
parents: 31790
diff changeset
  1612
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1613
    have "lb_exp prec x \<le> exp x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1614
    proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1615
      from exp_boundaries'[OF `-x \<le> 0`]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1616
      have ub_exp: "exp (- real x) \<le> ub_exp prec (-x)" unfolding atLeastAtMost_iff real_of_float_minus by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1617
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1618
      have "float_divl prec 1 (ub_exp prec (-x)) \<le> 1 / ub_exp prec (-x)" using float_divl[where x=1] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1619
      also have "\<dots> \<le> exp x"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1620
        using ub_exp[unfolded inverse_le_iff_le[OF order_less_le_trans[OF exp_gt_zero ub_exp] exp_gt_zero, symmetric]]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1621
        unfolding exp_minus nonzero_inverse_inverse_eq[OF exp_not_eq_zero] inverse_eq_divide by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1622
      finally show ?thesis unfolding lb_exp.simps if_P[OF True] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1623
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1624
    moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1625
    have "exp x \<le> ub_exp prec x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1626
    proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1627
      have "\<not> 0 < -x" using `0 < x` unfolding less_float_def by auto
31809
hoelzl
parents: 31790
diff changeset
  1628
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1629
      from exp_boundaries'[OF `-x \<le> 0`]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1630
      have lb_exp: "lb_exp prec (-x) \<le> exp (- real x)" unfolding atLeastAtMost_iff real_of_float_minus by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1631
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1632
      have "exp x \<le> (1 :: float) / lb_exp prec (-x)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1633
        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],
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1634
                                                symmetric]]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1635
        unfolding exp_minus nonzero_inverse_inverse_eq[OF exp_not_eq_zero] inverse_eq_divide real_of_float_1 by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1636
      also have "\<dots> \<le> float_divr prec 1 (lb_exp prec (-x))" using float_divr .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1637
      finally show ?thesis unfolding ub_exp.simps if_P[OF True] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1638
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1639
    ultimately show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1640
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1641
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1642
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1643
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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1644
proof (rule allI, rule allI, rule allI, rule impI)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1645
  fix x::real and lx ux
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1646
  assume "(l, u) = (lb_exp prec lx, ub_exp prec ux) \<and> x \<in> {lx .. ux}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1647
  hence l: "lb_exp prec lx = l " and u: "ub_exp prec ux = u" and x: "x \<in> {lx .. ux}" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1648
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1649
  { from exp_boundaries[of lx prec, unfolded l]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1650
    have "l \<le> exp lx" by (auto simp del: lb_exp.simps)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1651
    also have "\<dots> \<le> exp x" using x by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1652
    finally have "l \<le> exp x" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1653
  } moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1654
  { have "exp x \<le> exp ux" using x by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1655
    also have "\<dots> \<le> u" using exp_boundaries[of ux prec, unfolded u] by (auto simp del: ub_exp.simps)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1656
    finally have "exp x \<le> u" .
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1657
  } ultimately show "l \<le> exp x \<and> exp x \<le> u" ..
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1658
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1659
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1660
section "Logarithm"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1661
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1662
subsection "Compute the logarithm series"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1663
31809
hoelzl
parents: 31790
diff changeset
  1664
fun ub_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1665
and lb_ln_horner :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float \<Rightarrow> float" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1666
"ub_ln_horner prec 0 i x       = 0" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1667
"ub_ln_horner prec (Suc n) i x = rapprox_rat prec 1 (int i) - x * lb_ln_horner prec n (Suc i) x" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1668
"lb_ln_horner prec 0 i x       = 0" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1669
"lb_ln_horner prec (Suc n) i x = lapprox_rat prec 1 (int i) - x * ub_ln_horner prec n (Suc i) x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1670
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1671
lemma ln_bounds:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1672
  assumes "0 \<le> x" and "x < 1"
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30886
diff changeset
  1673
  shows "(\<Sum>i=0..<2*n. -1^i * (1 / real (i + 1)) * x ^ (Suc i)) \<le> ln (x + 1)" (is "?lb")
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30886
diff changeset
  1674
  and "ln (x + 1) \<le> (\<Sum>i=0..<2*n + 1. -1^i * (1 / real (i + 1)) * x ^ (Suc i))" (is "?ub")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1675
proof -
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30886
diff changeset
  1676
  let "?a n" = "(1/real (n +1)) * x ^ (Suc n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1677
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1678
  have ln_eq: "(\<Sum> i. -1^i * ?a i) = ln (x + 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1679
    using ln_series[of "x + 1"] `0 \<le> x` `x < 1` by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1680
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1681
  have "norm x < 1" using assms by auto
31809
hoelzl
parents: 31790
diff changeset
  1682
  have "?a ----> 0" unfolding Suc_eq_plus1[symmetric] inverse_eq_divide[symmetric]
44568
e6f291cb5810 discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents: 44349
diff changeset
  1683
    using tendsto_mult[OF LIMSEQ_inverse_real_of_nat LIMSEQ_Suc[OF LIMSEQ_power_zero[OF `norm x < 1`]]] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1684
  { fix n have "0 \<le> ?a n" by (rule mult_nonneg_nonneg, auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`) }
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1685
  { fix n have "?a (Suc n) \<le> ?a n" unfolding inverse_eq_divide[symmetric]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1686
    proof (rule mult_mono)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1687
      show "0 \<le> x ^ Suc (Suc n)" by (auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`)
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  1688
      have "x ^ Suc (Suc n) \<le> x ^ Suc n * 1" unfolding power_Suc2 mult_assoc[symmetric]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1689
        by (rule mult_left_mono, fact less_imp_le[OF `x < 1`], auto intro!: mult_nonneg_nonneg simp add: `0 \<le> x`)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1690
      thus "x ^ Suc (Suc n) \<le> x ^ Suc n" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1691
    qed auto }
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1692
  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]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1693
  show "?lb" and "?ub" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1694
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1695
31809
hoelzl
parents: 31790
diff changeset
  1696
lemma ln_float_bounds:
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1697
  assumes "0 \<le> real x" and "real x < 1"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1698
  shows "x * lb_ln_horner prec (get_even n) 1 x \<le> ln (x + 1)" (is "?lb \<le> ?ln")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1699
  and "ln (x + 1) \<le> x * ub_ln_horner prec (get_odd n) 1 x" (is "?ln \<le> ?ub")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1700
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1701
  obtain ev where ev: "get_even n = 2 * ev" using get_even_double ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1702
  obtain od where od: "get_odd n = 2 * od + 1" using get_odd_double ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1703
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1704
  let "?s n" = "-1^n * (1 / real (1 + n)) * (real x)^(Suc n)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1705
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  1706
  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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1707
    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",
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1708
      OF `0 \<le> real x` refl lb_ln_horner.simps ub_ln_horner.simps] `0 \<le> real x`
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1709
    by (rule mult_right_mono)
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1710
  also have "\<dots> \<le> ?ln" using ln_bounds(1)[OF `0 \<le> real x` `real x < 1`] by auto
31809
hoelzl
parents: 31790
diff changeset
  1711
  finally show "?lb \<le> ?ln" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1712
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1713
  have "?ln \<le> setsum ?s {0 ..< 2 * od + 1}" using ln_bounds(2)[OF `0 \<le> real x` `real x < 1`] by auto
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  1714
  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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1715
    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",
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1716
      OF `0 \<le> real x` refl lb_ln_horner.simps ub_ln_horner.simps] `0 \<le> real x`
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1717
    by (rule mult_right_mono)
31809
hoelzl
parents: 31790
diff changeset
  1718
  finally show "?ln \<le> ?ub" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1719
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1720
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1721
lemma ln_add: assumes "0 < x" and "0 < y" shows "ln (x + y) = ln x + ln (1 + y / x)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1722
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1723
  have "x \<noteq> 0" using assms by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1724
  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
31809
hoelzl
parents: 31790
diff changeset
  1725
  moreover
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1726
  have "0 < y / x" using assms divide_pos_pos by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1727
  hence "0 < 1 + y / x" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1728
  ultimately show ?thesis using ln_mult assms by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1729
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1730
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1731
subsection "Compute the logarithm of 2"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1732
31809
hoelzl
parents: 31790
diff changeset
  1733
definition ub_ln2 where "ub_ln2 prec = (let third = rapprox_rat (max prec 1) 1 3
hoelzl
parents: 31790
diff changeset
  1734
                                        in (Float 1 -1 * ub_ln_horner prec (get_odd prec) 1 (Float 1 -1)) +
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1735
                                           (third * ub_ln_horner prec (get_odd prec) 1 third))"
31809
hoelzl
parents: 31790
diff changeset
  1736
definition lb_ln2 where "lb_ln2 prec = (let third = lapprox_rat prec 1 3
hoelzl
parents: 31790
diff changeset
  1737
                                        in (Float 1 -1 * lb_ln_horner prec (get_even prec) 1 (Float 1 -1)) +
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1738
                                           (third * lb_ln_horner prec (get_even prec) 1 third))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1739
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1740
lemma ub_ln2: "ln 2 \<le> ub_ln2 prec" (is "?ub_ln2")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1741
  and lb_ln2: "lb_ln2 prec \<le> ln 2" (is "?lb_ln2")
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1742
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1743
  let ?uthird = "rapprox_rat (max prec 1) 1 3"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1744
  let ?lthird = "lapprox_rat prec 1 3"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1745
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1746
  have ln2_sum: "ln 2 = ln (1/2 + 1) + ln (1 / 3 + 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1747
    using ln_add[of "3 / 2" "1 / 2"] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1748
  have lb3: "?lthird \<le> 1 / 3" using lapprox_rat[of prec 1 3] by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1749
  hence lb3_ub: "real ?lthird < 1" by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1750
  have lb3_lb: "0 \<le> real ?lthird" using lapprox_rat_bottom[of 1 3] by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1751
  have ub3: "1 / 3 \<le> ?uthird" using rapprox_rat[of 1 3] by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1752
  hence ub3_lb: "0 \<le> real ?uthird" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1753
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1754
  have lb2: "0 \<le> real (Float 1 -1)" and ub2: "real (Float 1 -1) < 1" unfolding Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1755
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1756
  have "0 \<le> (1::int)" and "0 < (3::int)" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1757
  have ub3_ub: "real ?uthird < 1" unfolding rapprox_rat.simps(2)[OF `0 \<le> 1` `0 < 3`]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1758
    by (rule rapprox_posrat_less1, auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1759
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1760
  have third_gt0: "(0 :: real) < 1 / 3 + 1" by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1761
  have uthird_gt0: "0 < real ?uthird + 1" using ub3_lb by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1762
  have lthird_gt0: "0 < real ?lthird + 1" using lb3_lb by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1763
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1764
  show ?ub_ln2 unfolding ub_ln2_def Let_def real_of_float_add ln2_sum Float_num(4)[symmetric]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1765
  proof (rule add_mono, fact ln_float_bounds(2)[OF lb2 ub2])
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1766
    have "ln (1 / 3 + 1) \<le> ln (real ?uthird + 1)" unfolding ln_le_cancel_iff[OF third_gt0 uthird_gt0] using ub3 by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1767
    also have "\<dots> \<le> ?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1768
      using ln_float_bounds(2)[OF ub3_lb ub3_ub] .
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1769
    finally show "ln (1 / 3 + 1) \<le> ?uthird * ub_ln_horner prec (get_odd prec) 1 ?uthird" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1770
  qed
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1771
  show ?lb_ln2 unfolding lb_ln2_def Let_def real_of_float_add ln2_sum Float_num(4)[symmetric]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1772
  proof (rule add_mono, fact ln_float_bounds(1)[OF lb2 ub2])
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1773
    have "?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird \<le> ln (real ?lthird + 1)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1774
      using ln_float_bounds(1)[OF lb3_lb lb3_ub] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1775
    also have "\<dots> \<le> ln (1 / 3 + 1)" unfolding ln_le_cancel_iff[OF lthird_gt0 third_gt0] using lb3 by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1776
    finally show "?lthird * lb_ln_horner prec (get_even prec) 1 ?lthird \<le> ln (1 / 3 + 1)" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1777
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1778
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1779
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1780
subsection "Compute the logarithm in the entire domain"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1781
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1782
function ub_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" and lb_ln :: "nat \<Rightarrow> float \<Rightarrow> float option" where
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1783
"ub_ln prec x = (if x \<le> 0          then None
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1784
            else if x < 1          then Some (- the (lb_ln prec (float_divl (max prec 1) 1 x)))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1785
            else let horner = \<lambda>x. x * ub_ln_horner prec (get_odd prec) 1 x in
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1786
                 if x \<le> Float 3 -1 then Some (horner (x - 1))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1787
            else if x < Float 1 1  then Some (horner (Float 1 -1) + horner (x * rapprox_rat prec 2 3 - 1))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1788
                                   else let l = bitlen (mantissa x) - 1 in
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1789
                                        Some (ub_ln2 prec * (Float (scale x + l) 0) + horner (Float (mantissa x) (- l) - 1)))" |
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1790
"lb_ln prec x = (if x \<le> 0          then None
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1791
            else if x < 1          then Some (- the (ub_ln prec (float_divr prec 1 x)))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1792
            else let horner = \<lambda>x. x * lb_ln_horner prec (get_even prec) 1 x in
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1793
                 if x \<le> Float 3 -1 then Some (horner (x - 1))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1794
            else if x < Float 1 1  then Some (horner (Float 1 -1) +
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1795
                                              horner (max (x * lapprox_rat prec 2 3 - 1) 0))
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1796
                                   else let l = bitlen (mantissa x) - 1 in
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1797
                                        Some (lb_ln2 prec * (Float (scale x + l) 0) + horner (Float (mantissa x) (- l) - 1)))"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1798
by pat_completeness auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1799
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1800
termination proof (relation "measure (\<lambda> v. let (prec, x) = sum_case id id v in (if x < 1 then 1 else 0))", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1801
  fix prec x assume "\<not> x \<le> 0" and "x < 1" and "float_divl (max prec (Suc 0)) 1 x < 1"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1802
  hence "0 < x" and "0 < max prec (Suc 0)" unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1803
  from float_divl_pos_less1_bound[OF `0 < x` `x < 1` `0 < max prec (Suc 0)`]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1804
  show False using `float_divl (max prec (Suc 0)) 1 x < 1` unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1805
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1806
  fix prec x assume "\<not> x \<le> 0" and "x < 1" and "float_divr prec 1 x < 1"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1807
  hence "0 < x" unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1808
  from float_divr_pos_less1_lower_bound[OF `0 < x` `x < 1`, of prec]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1809
  show False using `float_divr prec 1 x < 1` unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1810
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1811
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1812
lemma ln_shifted_float: assumes "0 < m" shows "ln (Float m e) = ln 2 * (e + (bitlen m - 1)) + ln (Float m (- (bitlen m - 1)))"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1813
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1814
  let ?B = "2^nat (bitlen m - 1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1815
  have "0 < real m" and "\<And>X. (0 :: real) < 2^X" and "0 < (2 :: real)" and "m \<noteq> 0" using assms by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1816
  hence "0 \<le> bitlen m - 1" using bitlen_ge1[OF `m \<noteq> 0`] by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1817
  show ?thesis
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1818
  proof (cases "0 \<le> e")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1819
    case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1820
    show ?thesis unfolding normalized_float[OF `m \<noteq> 0`]
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1821
      unfolding ln_div[OF `0 < real m` `0 < ?B`] real_of_int_add ln_realpow[OF `0 < 2`]
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1822
      unfolding real_of_float_ge0_exp[OF True] ln_mult[OF `0 < real m` `0 < 2^nat e`]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1823
      ln_realpow[OF `0 < 2`] algebra_simps using `0 \<le> bitlen m - 1` True by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1824
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1825
    case False hence "0 < -e" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1826
    hence pow_gt0: "(0::real) < 2^nat (-e)" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1827
    hence inv_gt0: "(0::real) < inverse (2^nat (-e))" by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1828
    show ?thesis unfolding normalized_float[OF `m \<noteq> 0`]
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1829
      unfolding ln_div[OF `0 < real m` `0 < ?B`] real_of_int_add ln_realpow[OF `0 < 2`]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1830
      unfolding real_of_float_nge0_exp[OF False] ln_mult[OF `0 < real m` inv_gt0] ln_inverse[OF pow_gt0]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1831
      ln_realpow[OF `0 < 2`] algebra_simps using `0 \<le> bitlen m - 1` False by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1832
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1833
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1834
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1835
lemma ub_ln_lb_ln_bounds': assumes "1 \<le> x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1836
  shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1837
  (is "?lb \<le> ?ln \<and> ?ln \<le> ?ub")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1838
proof (cases "x < Float 1 1")
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1839
  case True
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1840
  hence "real (x - 1) < 1" and "real x < 2" unfolding less_float_def Float_num by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1841
  have "\<not> x \<le> 0" and "\<not> x < 1" using `1 \<le> x` unfolding less_float_def le_float_def by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1842
  hence "0 \<le> real (x - 1)" using `1 \<le> x` unfolding less_float_def Float_num by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1843
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1844
  have [simp]: "(Float 3 -1) = 3 / 2" by (simp add: real_of_float_def pow2_def)
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1845
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1846
  show ?thesis
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1847
  proof (cases "x \<le> Float 3 -1")
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1848
    case True
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1849
    show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps Let_def
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1850
      using ln_float_bounds[OF `0 \<le> real (x - 1)` `real (x - 1) < 1`, of prec] `\<not> x \<le> 0` `\<not> x < 1` True
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1851
      by auto
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1852
  next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1853
    case False hence *: "3 / 2 < x" by (auto simp add: le_float_def)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1854
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1855
    with ln_add[of "3 / 2" "x - 3 / 2"]
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1856
    have add: "ln x = ln (3 / 2) + ln (real x * 2 / 3)"
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1857
      by (auto simp add: algebra_simps diff_divide_distrib)
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1858
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1859
    let "?ub_horner x" = "x * ub_ln_horner prec (get_odd prec) 1 x"
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1860
    let "?lb_horner x" = "x * lb_ln_horner prec (get_even prec) 1 x"
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1861
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1862
    { have up: "real (rapprox_rat prec 2 3) \<le> 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1863
        by (rule rapprox_rat_le1) simp_all
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1864
      have low: "2 / 3 \<le> rapprox_rat prec 2 3"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1865
        by (rule order_trans[OF _ rapprox_rat]) simp
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1866
      from mult_less_le_imp_less[OF * low] *
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1867
      have pos: "0 < real (x * rapprox_rat prec 2 3 - 1)" by auto
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1868
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1869
      have "ln (real x * 2/3)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1870
        \<le> ln (real (x * rapprox_rat prec 2 3 - 1) + 1)"
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1871
      proof (rule ln_le_cancel_iff[symmetric, THEN iffD1])
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1872
        show "real x * 2 / 3 \<le> real (x * rapprox_rat prec 2 3 - 1) + 1"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1873
          using * low by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1874
        show "0 < real x * 2 / 3" using * by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1875
        show "0 < real (x * rapprox_rat prec 2 3 - 1) + 1" using pos by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1876
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1877
      also have "\<dots> \<le> ?ub_horner (x * rapprox_rat prec 2 3 - 1)"
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1878
      proof (rule ln_float_bounds(2))
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1879
        from mult_less_le_imp_less[OF `real x < 2` up] low *
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1880
        show "real (x * rapprox_rat prec 2 3 - 1) < 1" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1881
        show "0 \<le> real (x * rapprox_rat prec 2 3 - 1)" using pos by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1882
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1883
      finally have "ln x
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1884
        \<le> ?ub_horner (Float 1 -1)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1885
          + ?ub_horner (x * rapprox_rat prec 2 3 - 1)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1886
        using ln_float_bounds(2)[of "Float 1 -1" prec prec] add by auto }
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1887
    moreover
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1888
    { let ?max = "max (x * lapprox_rat prec 2 3 - 1) 0"
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1889
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1890
      have up: "lapprox_rat prec 2 3 \<le> 2/3"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1891
        by (rule order_trans[OF lapprox_rat], simp)
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1892
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1893
      have low: "0 \<le> real (lapprox_rat prec 2 3)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1894
        using lapprox_rat_bottom[of 2 3 prec] by simp
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1895
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1896
      have "?lb_horner ?max
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1897
        \<le> ln (real ?max + 1)"
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1898
      proof (rule ln_float_bounds(1))
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1899
        from mult_less_le_imp_less[OF `real x < 2` up] * low
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1900
        show "real ?max < 1" by (cases "real (lapprox_rat prec 2 3) = 0",
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1901
          auto simp add: real_of_float_max)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1902
        show "0 \<le> real ?max" by (auto simp add: real_of_float_max)
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1903
      qed
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1904
      also have "\<dots> \<le> ln (real x * 2/3)"
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1905
      proof (rule ln_le_cancel_iff[symmetric, THEN iffD1])
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1906
        show "0 < real ?max + 1" by (auto simp add: real_of_float_max)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1907
        show "0 < real x * 2/3" using * by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1908
        show "real ?max + 1 \<le> real x * 2/3" using * up
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1909
          by (cases "0 < real x * real (lapprox_posrat prec 2 3) - 1",
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1910
              auto simp add: real_of_float_max min_max.sup_absorb1)
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1911
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1912
      finally have "?lb_horner (Float 1 -1) + ?lb_horner ?max
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1913
        \<le> ln x"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1914
        using ln_float_bounds(1)[of "Float 1 -1" prec prec] add by auto }
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1915
    ultimately
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1916
    show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps Let_def
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1917
      using `\<not> x \<le> 0` `\<not> x < 1` True False by auto
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1918
  qed
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1919
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1920
  case False
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1921
  hence "\<not> x \<le> 0" and "\<not> x < 1" "0 < x" "\<not> x \<le> Float 3 -1"
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1922
    using `1 \<le> x` unfolding less_float_def le_float_def real_of_float_simp pow2_def
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1923
    by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1924
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1925
  proof (cases x)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1926
    case (Float m e)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1927
    let ?s = "Float (e + (bitlen m - 1)) 0"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1928
    let ?x = "Float m (- (bitlen m - 1))"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1929
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1930
    have "0 < m" and "m \<noteq> 0" using float_pos_m_pos `0 < x` Float by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1931
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1932
    {
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1933
      have "lb_ln2 prec * ?s \<le> ln 2 * (e + (bitlen m - 1))" (is "?lb2 \<le> _")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1934
        unfolding real_of_float_mult real_of_float_ge0_exp[OF order_refl] nat_0 power_0 mult_1_right
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1935
        using lb_ln2[of prec]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1936
      proof (rule mult_right_mono)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1937
        have "1 \<le> Float m e" using `1 \<le> x` Float unfolding le_float_def by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1938
        from float_gt1_scale[OF this]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1939
        show "0 \<le> real (e + (bitlen m - 1))" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1940
      qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1941
      moreover
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1942
      from bitlen_div[OF `0 < m`, unfolded normalized_float[OF `m \<noteq> 0`, symmetric]]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1943
      have "0 \<le> real (?x - 1)" and "real (?x - 1) < 1" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1944
      from ln_float_bounds(1)[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1945
      have "(?x - 1) * lb_ln_horner prec (get_even prec) 1 (?x - 1) \<le> ln ?x" (is "?lb_horner \<le> _") by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1946
      ultimately have "?lb2 + ?lb_horner \<le> ln x"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1947
        unfolding Float ln_shifted_float[OF `0 < m`, of e] by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1948
    }
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1949
    moreover
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1950
    {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1951
      from bitlen_div[OF `0 < m`, unfolded normalized_float[OF `m \<noteq> 0`, symmetric]]
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1952
      have "0 \<le> real (?x - 1)" and "real (?x - 1) < 1" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1953
      from ln_float_bounds(2)[OF this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1954
      have "ln ?x \<le> (?x - 1) * ub_ln_horner prec (get_odd prec) 1 (?x - 1)" (is "_ \<le> ?ub_horner") by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1955
      moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1956
      have "ln 2 * (e + (bitlen m - 1)) \<le> ub_ln2 prec * ?s" (is "_ \<le> ?ub2")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1957
        unfolding real_of_float_mult real_of_float_ge0_exp[OF order_refl] nat_0 power_0 mult_1_right
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1958
        using ub_ln2[of prec]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1959
      proof (rule mult_right_mono)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1960
        have "1 \<le> Float m e" using `1 \<le> x` Float unfolding le_float_def by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1961
        from float_gt1_scale[OF this]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1962
        show "0 \<le> real (e + (bitlen m - 1))" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1963
      qed
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1964
      ultimately have "ln x \<le> ?ub2 + ?ub_horner"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  1965
        unfolding Float ln_shifted_float[OF `0 < m`, of e] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1966
    }
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1967
    ultimately show ?thesis unfolding lb_ln.simps unfolding ub_ln.simps
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1968
      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
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1969
      unfolding scale.simps[of m e, unfolded Float[symmetric]] mantissa.simps[of m e, unfolded Float[symmetric]] real_of_float_add
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1970
      by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1971
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1972
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1973
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1974
lemma ub_ln_lb_ln_bounds: assumes "0 < x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1975
  shows "the (lb_ln prec x) \<le> ln x \<and> ln x \<le> the (ub_ln prec x)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1976
  (is "?lb \<le> ?ln \<and> ?ln \<le> ?ub")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1977
proof (cases "x < 1")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1978
  case False hence "1 \<le> x" unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1979
  show ?thesis using ub_ln_lb_ln_bounds'[OF `1 \<le> x`] .
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1980
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1981
  case True have "\<not> x \<le> 0" using `0 < x` unfolding less_float_def le_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1982
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1983
  have "0 < real x" and "real x \<noteq> 0" using `0 < x` unfolding less_float_def by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1984
  hence A: "0 < 1 / real x" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1985
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1986
  {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1987
    let ?divl = "float_divl (max prec 1) 1 x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1988
    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
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1989
    hence B: "0 < real ?divl" unfolding le_float_def by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1990
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1991
    have "ln ?divl \<le> ln (1 / x)" unfolding ln_le_cancel_iff[OF B A] using float_divl[of _ 1 x] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1992
    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
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  1993
    from this ub_ln_lb_ln_bounds'[OF A', THEN conjunct1, THEN le_imp_neg_le]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  1994
    have "?ln \<le> - the (lb_ln prec ?divl)" unfolding real_of_float_minus by (rule order_trans)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1995
  } moreover
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1996
  {
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1997
    let ?divr = "float_divr prec 1 x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  1998
    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
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  1999
    hence B: "0 < real ?divr" unfolding le_float_def by auto
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  2000
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2001
    have "ln (1 / x) \<le> ln ?divr" unfolding ln_le_cancel_iff[OF A B] using float_divr[of 1 x] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2002
    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
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2003
    from ub_ln_lb_ln_bounds'[OF A', THEN conjunct2, THEN le_imp_neg_le] this
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2004
    have "- the (ub_ln prec ?divr) \<le> ?ln" unfolding real_of_float_minus by (rule order_trans)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2005
  }
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2006
  ultimately show ?thesis unfolding lb_ln.simps[where x=x]  ub_ln.simps[where x=x]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2007
    unfolding if_not_P[OF `\<not> x \<le> 0`] if_P[OF True] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2008
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2009
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2010
lemma lb_ln: assumes "Some y = lb_ln prec x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2011
  shows "y \<le> ln x" and "0 < real x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2012
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2013
  have "0 < x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2014
  proof (rule ccontr)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2015
    assume "\<not> 0 < x" hence "x \<le> 0" unfolding le_float_def less_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2016
    thus False using assms by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2017
  qed
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2018
  thus "0 < real x" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2019
  have "the (lb_ln prec x) \<le> ln x" using ub_ln_lb_ln_bounds[OF `0 < x`] ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2020
  thus "y \<le> ln x" unfolding assms[symmetric] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2021
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2022
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2023
lemma ub_ln: assumes "Some y = ub_ln prec x"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2024
  shows "ln x \<le> y" and "0 < real x"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2025
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2026
  have "0 < x"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2027
  proof (rule ccontr)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2028
    assume "\<not> 0 < x" hence "x \<le> 0" unfolding le_float_def less_float_def by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2029
    thus False using assms by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2030
  qed
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2031
  thus "0 < real x" unfolding less_float_def by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2032
  have "ln x \<le> the (ub_ln prec x)" using ub_ln_lb_ln_bounds[OF `0 < x`] ..
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2033
  thus "ln x \<le> y" unfolding assms[symmetric] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2034
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2035
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2036
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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2037
proof (rule allI, rule allI, rule allI, rule impI)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2038
  fix x::real and lx ux
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2039
  assume "(Some l, Some u) = (lb_ln prec lx, ub_ln prec ux) \<and> x \<in> {lx .. ux}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2040
  hence l: "Some l = lb_ln prec lx " and u: "Some u = ub_ln prec ux" and x: "x \<in> {lx .. ux}" by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2041
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2042
  have "ln ux \<le> u" and "0 < real ux" using ub_ln u by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2043
  have "l \<le> ln lx" and "0 < real lx" and "0 < x" using lb_ln[OF l] x by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2044
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2045
  from ln_le_cancel_iff[OF `0 < real lx` `0 < x`] `l \<le> ln lx`
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2046
  have "l \<le> ln x" using x unfolding atLeastAtMost_iff by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2047
  moreover
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2048
  from ln_le_cancel_iff[OF `0 < x` `0 < real ux`] `ln ux \<le> real u`
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2049
  have "ln x \<le> u" using x unfolding atLeastAtMost_iff by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2050
  ultimately show "l \<le> ln x \<and> ln x \<le> u" ..
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2051
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2052
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2053
section "Implement floatarith"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2054
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2055
subsection "Define syntax and semantics"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2056
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2057
datatype floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2058
  = Add floatarith floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2059
  | Minus floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2060
  | Mult floatarith floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2061
  | Inverse floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2062
  | Cos floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2063
  | Arctan floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2064
  | Abs floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2065
  | Max floatarith floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2066
  | Min floatarith floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2067
  | Pi
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2068
  | Sqrt floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2069
  | Exp floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2070
  | Ln floatarith
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2071
  | Power floatarith nat
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2072
  | Var nat
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2073
  | Num float
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2074
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2075
fun interpret_floatarith :: "floatarith \<Rightarrow> real list \<Rightarrow> real" where
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2076
"interpret_floatarith (Add a b) vs   = (interpret_floatarith a vs) + (interpret_floatarith b vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2077
"interpret_floatarith (Minus a) vs    = - (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2078
"interpret_floatarith (Mult a b) vs   = (interpret_floatarith a vs) * (interpret_floatarith b vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2079
"interpret_floatarith (Inverse a) vs  = inverse (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2080
"interpret_floatarith (Cos a) vs      = cos (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2081
"interpret_floatarith (Arctan a) vs   = arctan (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2082
"interpret_floatarith (Min a b) vs    = min (interpret_floatarith a vs) (interpret_floatarith b vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2083
"interpret_floatarith (Max a b) vs    = max (interpret_floatarith a vs) (interpret_floatarith b vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2084
"interpret_floatarith (Abs a) vs      = abs (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2085
"interpret_floatarith Pi vs           = pi" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2086
"interpret_floatarith (Sqrt a) vs     = sqrt (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2087
"interpret_floatarith (Exp a) vs      = exp (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2088
"interpret_floatarith (Ln a) vs       = ln (interpret_floatarith a vs)" |
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2089
"interpret_floatarith (Power a n) vs  = (interpret_floatarith a vs)^n" |
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2090
"interpret_floatarith (Num f) vs      = f" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2091
"interpret_floatarith (Var n) vs     = vs ! n"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2092
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2093
lemma interpret_floatarith_divide: "interpret_floatarith (Mult a (Inverse b)) vs = (interpret_floatarith a vs) / (interpret_floatarith b vs)"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  2094
  unfolding divide_inverse interpret_floatarith.simps ..
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2095
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2096
lemma interpret_floatarith_diff: "interpret_floatarith (Add a (Minus b)) vs = (interpret_floatarith a vs) - (interpret_floatarith b vs)"
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  2097
  unfolding diff_minus interpret_floatarith.simps ..
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2098
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2099
lemma interpret_floatarith_sin: "interpret_floatarith (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) vs =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2100
  sin (interpret_floatarith a vs)"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2101
  unfolding sin_cos_eq interpret_floatarith.simps
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37677
diff changeset
  2102
            interpret_floatarith_divide interpret_floatarith_diff diff_minus
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2103
  by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2104
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2105
lemma interpret_floatarith_tan:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2106
  "interpret_floatarith (Mult (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) (Inverse (Cos a))) vs =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2107
   tan (interpret_floatarith a vs)"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  2108
  unfolding interpret_floatarith.simps(3,4) interpret_floatarith_sin tan_def divide_inverse
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2109
  by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2110
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2111
lemma interpret_floatarith_powr: "interpret_floatarith (Exp (Mult b (Ln a))) vs = (interpret_floatarith a vs) powr (interpret_floatarith b vs)"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2112
  unfolding powr_def interpret_floatarith.simps ..
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2113
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2114
lemma interpret_floatarith_log: "interpret_floatarith ((Mult (Ln x) (Inverse (Ln b)))) vs = log (interpret_floatarith b vs) (interpret_floatarith x vs)"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 36531
diff changeset
  2115
  unfolding log_def interpret_floatarith.simps divide_inverse ..
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2116
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2117
lemma interpret_floatarith_num:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2118
  shows "interpret_floatarith (Num (Float 0 0)) vs = 0"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2119
  and "interpret_floatarith (Num (Float 1 0)) vs = 1"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2120
  and "interpret_floatarith (Num (Float (number_of a) 0)) vs = number_of a" by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2121
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2122
subsection "Implement approximation function"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2123
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2124
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
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2125
"lift_bin' (Some (l1, u1)) (Some (l2, u2)) f = Some (f l1 u1 l2 u2)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2126
"lift_bin' a b f = None"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2127
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2128
fun lift_un :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> ((float option) * (float option))) \<Rightarrow> (float * float) option" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2129
"lift_un (Some (l1, u1)) f = (case (f l1 u1) of (Some l, Some u) \<Rightarrow> Some (l, u)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2130
                                             | t \<Rightarrow> None)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2131
"lift_un b f = None"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2132
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2133
fun lift_un' :: "(float * float) option \<Rightarrow> (float \<Rightarrow> float \<Rightarrow> (float * float)) \<Rightarrow> (float * float) option" where
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2134
"lift_un' (Some (l1, u1)) f = Some (f l1 u1)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2135
"lift_un' b f = None"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2136
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2137
definition
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2138
"bounded_by xs vs \<longleftrightarrow>
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2139
  (\<forall> i < length vs. case vs ! i of None \<Rightarrow> True
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2140
         | Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u })"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2141
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2142
lemma bounded_byE:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2143
  assumes "bounded_by xs vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2144
  shows "\<And> i. i < length vs \<Longrightarrow> case vs ! i of None \<Rightarrow> True
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2145
         | Some (l, u) \<Rightarrow> xs ! i \<in> { real l .. real u }"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2146
  using assms bounded_by_def by blast
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2147
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2148
lemma bounded_by_update:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2149
  assumes "bounded_by xs vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2150
  and bnd: "xs ! i \<in> { real l .. real u }"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2151
  shows "bounded_by xs (vs[i := Some (l,u)])"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2152
proof -
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2153
{ fix j
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2154
  let ?vs = "vs[i := Some (l,u)]"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2155
  assume "j < length ?vs" hence [simp]: "j < length vs" by simp
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2156
  have "case ?vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> xs ! j \<in> { real l .. real u }"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2157
  proof (cases "?vs ! j")
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2158
    case (Some b)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2159
    thus ?thesis
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2160
    proof (cases "i = j")
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2161
      case True
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2162
      thus ?thesis using `?vs ! j = Some b` and bnd by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2163
    next
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2164
      case False
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2165
      thus ?thesis using `bounded_by xs vs` unfolding bounded_by_def by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2166
    qed
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2167
  qed auto }
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2168
  thus ?thesis unfolding bounded_by_def by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2169
qed
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2170
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2171
lemma bounded_by_None:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2172
  shows "bounded_by xs (replicate (length xs) None)"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2173
  unfolding bounded_by_def by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2174
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2175
fun approx approx' :: "nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option" where
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2176
"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)" |
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2177
"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))" |
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2178
"approx prec (Minus a) bs   = lift_un' (approx' prec a bs) (\<lambda> l u. (-u, -l))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2179
"approx prec (Mult a b) bs  = lift_bin' (approx' prec a bs) (approx' prec b bs)
31809
hoelzl
parents: 31790
diff changeset
  2180
                                    (\<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,
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2181
                                                     float_pprt a2 * float_pprt b2 + float_pprt a1 * float_nprt b2 + float_nprt a2 * float_pprt b1 + float_nprt a1 * float_nprt b1))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2182
"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))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2183
"approx prec (Cos a) bs     = lift_un' (approx' prec a bs) (bnds_cos prec)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2184
"approx prec Pi bs          = Some (lb_pi prec, ub_pi prec)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2185
"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))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2186
"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))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2187
"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>))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2188
"approx prec (Arctan a) bs  = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_arctan prec l, ub_arctan prec u))" |
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  2189
"approx prec (Sqrt a) bs    = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_sqrt prec l, ub_sqrt prec u))" |
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2190
"approx prec (Exp a) bs     = lift_un' (approx' prec a bs) (\<lambda> l u. (lb_exp prec l, ub_exp prec u))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2191
"approx prec (Ln a) bs      = lift_un (approx' prec a bs) (\<lambda> l u. (lb_ln prec l, ub_ln prec u))" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2192
"approx prec (Power a n) bs = lift_un' (approx' prec a bs) (float_power_bnds n)" |
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2193
"approx prec (Num f) bs     = Some (f, f)" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2194
"approx prec (Var i) bs    = (if i < length bs then bs ! i else None)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2195
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2196
lemma lift_bin'_ex:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2197
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' a b f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2198
  shows "\<exists> l1 u1 l2 u2. Some (l1, u1) = a \<and> Some (l2, u2) = b"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2199
proof (cases a)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2200
  case None hence "None = lift_bin' a b f" unfolding None lift_bin'.simps ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2201
  thus ?thesis using lift_bin'_Some by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2202
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2203
  case (Some a')
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2204
  show ?thesis
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2205
  proof (cases b)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2206
    case None hence "None = lift_bin' a b f" unfolding None lift_bin'.simps ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2207
    thus ?thesis using lift_bin'_Some by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2208
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2209
    case (Some b')
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2210
    obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2211
    obtain lb ub where b': "b' = (lb, ub)" by (cases b', auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2212
    thus ?thesis unfolding `a = Some a'` `b = Some b'` a' b' by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2213
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2214
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2215
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2216
lemma lift_bin'_f:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2217
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' (g a) (g b) f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2218
  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"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2219
  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)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2220
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2221
  obtain l1 u1 l2 u2
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2222
    where Sa: "Some (l1, u1) = g a" and Sb: "Some (l2, u2) = g b" using lift_bin'_ex[OF assms(1)] by auto
31809
hoelzl
parents: 31790
diff changeset
  2223
  have lu: "(l, u) = f l1 u1 l2 u2" using lift_bin'_Some[unfolded Sa[symmetric] Sb[symmetric] lift_bin'.simps] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2224
  have "l = fst (f l1 u1 l2 u2)" and "u = snd (f l1 u1 l2 u2)" unfolding lu[symmetric] by auto
31809
hoelzl
parents: 31790
diff changeset
  2225
  thus ?thesis using Pa[OF Sa] Pb[OF Sb] by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2226
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2227
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2228
lemma approx_approx':
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2229
  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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2230
  and approx': "Some (l, u) = approx' prec a vs"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2231
  shows "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2232
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2233
  obtain l' u' where S: "Some (l', u') = approx prec a vs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2234
    using approx' unfolding approx'.simps by (cases "approx prec a vs", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2235
  have l': "l = round_down prec l'" and u': "u = round_up prec u'"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2236
    using approx' unfolding approx'.simps S[symmetric] by auto
31809
hoelzl
parents: 31790
diff changeset
  2237
  show ?thesis unfolding l' u'
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2238
    using order_trans[OF Pa[OF S, THEN conjunct2] round_up[of u']]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2239
    using order_trans[OF round_down[of _ l'] Pa[OF S, THEN conjunct1]] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2240
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2241
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2242
lemma lift_bin':
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2243
  assumes lift_bin'_Some: "Some (l, u) = lift_bin' (approx' prec a bs) (approx' prec b bs) f"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2244
  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")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2245
  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"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2246
  shows "\<exists> l1 u1 l2 u2. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2247
                        (l2 \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u2) \<and>
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2248
                        l = fst (f l1 u1 l2 u2) \<and> u = snd (f l1 u1 l2 u2)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2249
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2250
  { fix l u assume "Some (l, u) = approx' prec a bs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2251
    with approx_approx'[of prec a bs, OF _ this] Pa
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2252
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2253
  { fix l u assume "Some (l, u) = approx' prec b bs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2254
    with approx_approx'[of prec b bs, OF _ this] Pb
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2255
    have "l \<le> interpret_floatarith b xs \<and> interpret_floatarith b xs \<le> u" by auto } note Pb = this
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2256
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2257
  from lift_bin'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_bin'_Some, OF Pa Pb]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2258
  show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2259
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2260
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2261
lemma lift_un'_ex:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2262
  assumes lift_un'_Some: "Some (l, u) = lift_un' a f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2263
  shows "\<exists> l u. Some (l, u) = a"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2264
proof (cases a)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2265
  case None hence "None = lift_un' a f" unfolding None lift_un'.simps ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2266
  thus ?thesis using lift_un'_Some by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2267
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2268
  case (Some a')
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2269
  obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2270
  thus ?thesis unfolding `a = Some a'` a' by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2271
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2272
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2273
lemma lift_un'_f:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2274
  assumes lift_un'_Some: "Some (l, u) = lift_un' (g a) f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2275
  and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2276
  shows "\<exists> l1 u1. P l1 u1 a \<and> l = fst (f l1 u1) \<and> u = snd (f l1 u1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2277
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2278
  obtain l1 u1 where Sa: "Some (l1, u1) = g a" using lift_un'_ex[OF assms(1)] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2279
  have lu: "(l, u) = f l1 u1" using lift_un'_Some[unfolded Sa[symmetric] lift_un'.simps] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2280
  have "l = fst (f l1 u1)" and "u = snd (f l1 u1)" unfolding lu[symmetric] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2281
  thus ?thesis using Pa[OF Sa] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2282
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2283
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2284
lemma lift_un':
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2285
  assumes lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2286
  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")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2287
  shows "\<exists> l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2288
                        l = fst (f l1 u1) \<and> u = snd (f l1 u1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2289
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2290
  { fix l u assume "Some (l, u) = approx' prec a bs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2291
    with approx_approx'[of prec a bs, OF _ this] Pa
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2292
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2293
  from lift_un'_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un'_Some, OF Pa]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2294
  show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2295
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2296
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2297
lemma lift_un'_bnds:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2298
  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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2299
  and lift_un'_Some: "Some (l, u) = lift_un' (approx' prec a bs) f"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2300
  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"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2301
  shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2302
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2303
  from lift_un'[OF lift_un'_Some Pa]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2304
  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
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2305
  hence "(l, u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2306
  thus ?thesis using bnds by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2307
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2308
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2309
lemma lift_un_ex:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2310
  assumes lift_un_Some: "Some (l, u) = lift_un a f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2311
  shows "\<exists> l u. Some (l, u) = a"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2312
proof (cases a)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2313
  case None hence "None = lift_un a f" unfolding None lift_un.simps ..
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2314
  thus ?thesis using lift_un_Some by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2315
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2316
  case (Some a')
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2317
  obtain la ua where a': "a' = (la, ua)" by (cases a', auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2318
  thus ?thesis unfolding `a = Some a'` a' by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2319
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2320
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2321
lemma lift_un_f:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2322
  assumes lift_un_Some: "Some (l, u) = lift_un (g a) f"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2323
  and Pa: "\<And>l u. Some (l, u) = g a \<Longrightarrow> P l u a"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2324
  shows "\<exists> l1 u1. P l1 u1 a \<and> Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2325
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2326
  obtain l1 u1 where Sa: "Some (l1, u1) = g a" using lift_un_ex[OF assms(1)] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2327
  have "fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2328
  proof (rule ccontr)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2329
    assume "\<not> (fst (f l1 u1) \<noteq> None \<and> snd (f l1 u1) \<noteq> None)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2330
    hence or: "fst (f l1 u1) = None \<or> snd (f l1 u1) = None" by auto
31809
hoelzl
parents: 31790
diff changeset
  2331
    hence "lift_un (g a) f = None"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2332
    proof (cases "fst (f l1 u1) = None")
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2333
      case True
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2334
      then obtain b where b: "f l1 u1 = (None, b)" by (cases "f l1 u1", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2335
      thus ?thesis unfolding Sa[symmetric] lift_un.simps b by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2336
    next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2337
      case False hence "snd (f l1 u1) = None" using or by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2338
      with False obtain b where b: "f l1 u1 = (Some b, None)" by (cases "f l1 u1", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2339
      thus ?thesis unfolding Sa[symmetric] lift_un.simps b by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2340
    qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2341
    thus False using lift_un_Some by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2342
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2343
  then obtain a' b' where f: "f l1 u1 = (Some a', Some b')" by (cases "f l1 u1", auto)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2344
  from lift_un_Some[unfolded Sa[symmetric] lift_un.simps f]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2345
  have "Some l = fst (f l1 u1)" and "Some u = snd (f l1 u1)" unfolding f by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2346
  thus ?thesis unfolding Sa[symmetric] lift_un.simps using Pa[OF Sa] by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2347
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2348
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2349
lemma lift_un:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2350
  assumes lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2351
  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")
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2352
  shows "\<exists> l1 u1. (l1 \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u1) \<and>
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2353
                  Some l = fst (f l1 u1) \<and> Some u = snd (f l1 u1)"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2354
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2355
  { fix l u assume "Some (l, u) = approx' prec a bs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2356
    with approx_approx'[of prec a bs, OF _ this] Pa
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2357
    have "l \<le> interpret_floatarith a xs \<and> interpret_floatarith a xs \<le> u" by auto } note Pa = this
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2358
  from lift_un_f[where g="\<lambda>a. approx' prec a bs" and P = ?P, OF lift_un_Some, OF Pa]
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2359
  show ?thesis by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2360
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2361
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2362
lemma lift_un_bnds:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2363
  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"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2364
  and lift_un_Some: "Some (l, u) = lift_un (approx' prec a bs) f"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2365
  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"
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2366
  shows "real l \<le> f' (interpret_floatarith a xs) \<and> f' (interpret_floatarith a xs) \<le> real u"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2367
proof -
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2368
  from lift_un[OF lift_un_Some Pa]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2369
  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
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2370
  hence "(Some l, Some u) = f l1 u1" and "interpret_floatarith a xs \<in> {l1 .. u1}" by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2371
  thus ?thesis using bnds by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2372
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2373
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2374
lemma approx:
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2375
  assumes "bounded_by xs vs"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2376
  and "Some (l, u) = approx prec arith vs" (is "_ = ?g arith")
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2377
  shows "l \<le> interpret_floatarith arith xs \<and> interpret_floatarith arith xs \<le> u" (is "?P l u arith")
31809
hoelzl
parents: 31790
diff changeset
  2378
  using `Some (l, u) = approx prec arith vs`
45129
1fce03e3e8ad tuned proofs -- eliminated vacuous "induct arbitrary: ..." situations;
wenzelm
parents: 44821
diff changeset
  2379
proof (induct arith arbitrary: l u)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2380
  case (Add a b)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2381
  from lift_bin'[OF Add.prems[unfolded approx.simps]] Add.hyps
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2382
  obtain l1 u1 l2 u2 where "l = l1 + l2" and "u = u1 + u2"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2383
    "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2384
    "l2 \<le> interpret_floatarith b xs" and "interpret_floatarith b xs \<le> u2" unfolding fst_conv snd_conv by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2385
  thus ?case unfolding interpret_floatarith.simps by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2386
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2387
  case (Minus a)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2388
  from lift_un'[OF Minus.prems[unfolded approx.simps]] Minus.hyps
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2389
  obtain l1 u1 where "l = -u1" and "u = -l1"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2390
    "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1" unfolding fst_conv snd_conv by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2391
  thus ?case unfolding interpret_floatarith.simps using real_of_float_minus by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2392
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2393
  case (Mult a b)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2394
  from lift_bin'[OF Mult.prems[unfolded approx.simps]] Mult.hyps
31809
hoelzl
parents: 31790
diff changeset
  2395
  obtain l1 u1 l2 u2
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2396
    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"
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2397
    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"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2398
    and "l1 \<le> interpret_floatarith a xs" and "interpret_floatarith a xs \<le> u1"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2399
    and "l2 \<le> interpret_floatarith b xs" and "interpret_floatarith b xs \<le> u2" unfolding fst_conv snd_conv by blast
31809
hoelzl
parents: 31790
diff changeset
  2400
  thus ?case unfolding interpret_floatarith.simps l u real_of_float_add real_of_float_mult real_of_float_nprt real_of_float_pprt
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2401
    using mult_le_prts mult_ge_prts by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2402
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2403
  case (Inverse a)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2404
  from lift_un[OF Inverse.prems[unfolded approx.simps], unfolded if_distrib[of fst] if_distrib[of snd] fst_conv snd_conv] Inverse.hyps
31809
hoelzl
parents: 31790
diff changeset
  2405
  obtain l1 u1 where l': "Some l = (if 0 < l1 \<or> u1 < 0 then Some (float_divl prec 1 u1) else None)"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2406
    and u': "Some u = (if 0 < l1 \<or> u1 < 0 then Some (float_divr prec 1 l1) else None)"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2407
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1" by blast
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2408
  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
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2409
  moreover have l1_le_u1: "real l1 \<le> real u1" using l1 u1 by auto
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2410
  ultimately have "real l1 \<noteq> 0" and "real u1 \<noteq> 0" unfolding less_float_def by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2411
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2412
  have inv: "inverse u1 \<le> inverse (interpret_floatarith a xs)
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2413
           \<and> inverse (interpret_floatarith a xs) \<le> inverse l1"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2414
  proof (cases "0 < l1")
31809
hoelzl
parents: 31790
diff changeset
  2415
    case True hence "0 < real u1" and "0 < real l1" "0 < interpret_floatarith a xs"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2416
      unfolding less_float_def using l1_le_u1 l1 by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2417
    show ?thesis
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2418
      unfolding inverse_le_iff_le[OF `0 < real u1` `0 < interpret_floatarith a xs`]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2419
        inverse_le_iff_le[OF `0 < interpret_floatarith a xs` `0 < real l1`]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2420
      using l1 u1 by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2421
  next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2422
    case False hence "u1 < 0" using either by blast
31809
hoelzl
parents: 31790
diff changeset
  2423
    hence "real u1 < 0" and "real l1 < 0" "interpret_floatarith a xs < 0"
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2424
      unfolding less_float_def using l1_le_u1 u1 by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2425
    show ?thesis
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2426
      unfolding inverse_le_iff_le_neg[OF `real u1 < 0` `interpret_floatarith a xs < 0`]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2427
        inverse_le_iff_le_neg[OF `interpret_floatarith a xs < 0` `real l1 < 0`]
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2428
      using l1 u1 by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2429
  qed
31468
b8267feaf342 Approximation: Corrected precision of ln on all real values
hoelzl
parents: 31467
diff changeset
  2430
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2431
  from l' have "l = float_divl prec 1 u1" by (cases "0 < l1 \<or> u1 < 0", auto)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2432
  hence "l \<le> inverse u1" unfolding nonzero_inverse_eq_divide[OF `real u1 \<noteq> 0`] using float_divl[of prec 1 u1] by auto
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2433
  also have "\<dots> \<le> inverse (interpret_floatarith a xs)" using inv by auto
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2434
  finally have "l \<le> inverse (interpret_floatarith a xs)" .
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2435
  moreover
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2436
  from u' have "u = float_divr prec 1 l1" by (cases "0 < l1 \<or> u1 < 0", auto)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2437
  hence "inverse l1 \<le> u" unfolding nonzero_inverse_eq_divide[OF `real l1 \<noteq> 0`] using float_divr[of 1 l1 prec] by auto
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2438
  hence "inverse (interpret_floatarith a xs) \<le> u" by (rule order_trans[OF inv[THEN conjunct2]])
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2439
  ultimately show ?case unfolding interpret_floatarith.simps using l1 u1 by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2440
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2441
  case (Abs x)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2442
  from lift_un'[OF Abs.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Abs.hyps
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2443
  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>"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2444
    and l1: "l1 \<le> interpret_floatarith x xs" and u1: "interpret_floatarith x xs \<le> u1" by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2445
  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)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2446
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2447
  case (Min a b)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2448
  from lift_bin'[OF Min.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Min.hyps
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2449
  obtain l1 u1 l2 u2 where l': "l = min l1 l2" and u': "u = min u1 u2"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2450
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2451
    and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2452
  thus ?case unfolding l' u' by (auto simp add: real_of_float_min)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2453
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2454
  case (Max a b)
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2455
  from lift_bin'[OF Max.prems[unfolded approx.simps], unfolded fst_conv snd_conv] Max.hyps
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2456
  obtain l1 u1 l2 u2 where l': "l = max l1 l2" and u': "u = max u1 u2"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2457
    and l1: "l1 \<le> interpret_floatarith a xs" and u1: "interpret_floatarith a xs \<le> u1"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2458
    and l1: "l2 \<le> interpret_floatarith b xs" and u1: "interpret_floatarith b xs \<le> u2" by blast
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  2459
  thus ?case unfolding l' u' by (auto simp add: real_of_float_max)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2460
next case (Cos a) with lift_un'_bnds[OF bnds_cos] show ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2461
next case (Arctan a) with lift_un'_bnds[OF bnds_arctan] show ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2462
next case Pi with pi_boundaries show ?case by auto
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  2463
next case (Sqrt a) with lift_un'_bnds[OF bnds_sqrt] show ?case by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2464
next case (Exp a) with lift_un'_bnds[OF bnds_exp] show ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2465
next case (Ln a) with lift_un_bnds[OF bnds_ln] show ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2466
next case (Power a n) with lift_un'_bnds[OF bnds_power] show ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2467
next case (Num f) thus ?case by auto
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2468
next
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2469
  case (Var n)
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2470
  from this[symmetric] `bounded_by xs vs`[THEN bounded_byE, of n]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2471
  show ?case by (cases "n < length vs", auto)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2472
qed
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2473
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2474
datatype form = Bound floatarith floatarith floatarith form
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2475
              | Assign floatarith floatarith form
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2476
              | Less floatarith floatarith
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2477
              | LessEqual floatarith floatarith
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2478
              | AtLeastAtMost floatarith floatarith floatarith
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2479
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2480
fun interpret_form :: "form \<Rightarrow> real list \<Rightarrow> bool" where
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2481
"interpret_form (Bound x a b f) vs = (interpret_floatarith x vs \<in> { interpret_floatarith a vs .. interpret_floatarith b vs } \<longrightarrow> interpret_form f vs)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2482
"interpret_form (Assign x a f) vs  = (interpret_floatarith x vs = interpret_floatarith a vs \<longrightarrow> interpret_form f vs)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2483
"interpret_form (Less a b) vs      = (interpret_floatarith a vs < interpret_floatarith b vs)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2484
"interpret_form (LessEqual a b) vs = (interpret_floatarith a vs \<le> interpret_floatarith b vs)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2485
"interpret_form (AtLeastAtMost x a b) vs = (interpret_floatarith x vs \<in> { interpret_floatarith a vs .. interpret_floatarith b vs })"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2486
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2487
fun approx_form' and approx_form :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> nat list \<Rightarrow> bool" where
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2488
"approx_form' prec f 0 n l u bs ss = approx_form prec f (bs[n := Some (l, u)]) ss" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2489
"approx_form' prec f (Suc s) n l u bs ss =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2490
  (let m = (l + u) * Float 1 -1
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2491
   in (if approx_form' prec f s n l m bs ss then approx_form' prec f s n m u bs ss else False))" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2492
"approx_form prec (Bound (Var n) a b f) bs ss =
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2493
   (case (approx prec a bs, approx prec b bs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2494
   of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2495
    | _ \<Rightarrow> False)" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2496
"approx_form prec (Assign (Var n) a f) bs ss =
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2497
   (case (approx prec a bs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2498
   of (Some (l, u)) \<Rightarrow> approx_form' prec f (ss ! n) n l u bs ss
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2499
    | _ \<Rightarrow> False)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2500
"approx_form prec (Less a b) bs ss =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2501
   (case (approx prec a bs, approx prec b bs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2502
   of (Some (l, u), Some (l', u')) \<Rightarrow> u < l'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2503
    | _ \<Rightarrow> False)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2504
"approx_form prec (LessEqual a b) bs ss =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2505
   (case (approx prec a bs, approx prec b bs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2506
   of (Some (l, u), Some (l', u')) \<Rightarrow> u \<le> l'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2507
    | _ \<Rightarrow> False)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2508
"approx_form prec (AtLeastAtMost x a b) bs ss =
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2509
   (case (approx prec x bs, approx prec a bs, approx prec b bs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2510
   of (Some (lx, ux), Some (l, u), Some (l', u')) \<Rightarrow> u \<le> lx \<and> ux \<le> l'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2511
    | _ \<Rightarrow> False)" |
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2512
"approx_form _ _ _ _ = False"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2513
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2514
lemma lazy_conj: "(if A then B else False) = (A \<and> B)" by simp
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2515
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2516
lemma approx_form_approx_form':
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2517
  assumes "approx_form' prec f s n l u bs ss" and "(x::real) \<in> { l .. u }"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2518
  obtains l' u' where "x \<in> { l' .. u' }"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2519
  and "approx_form prec f (bs[n := Some (l', u')]) ss"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2520
using assms proof (induct s arbitrary: l u)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2521
  case 0
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2522
  from this(1)[of l u] this(2,3)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2523
  show thesis by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2524
next
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2525
  case (Suc s)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2526
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2527
  let ?m = "(l + u) * Float 1 -1"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2528
  have "real l \<le> ?m" and "?m \<le> real u"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2529
    unfolding le_float_def using Suc.prems by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2530
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2531
  with `x \<in> { l .. u }`
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2532
  have "x \<in> { l .. ?m} \<or> x \<in> { ?m .. u }" by auto
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2533
  thus thesis
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2534
  proof (rule disjE)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2535
    assume *: "x \<in> { l .. ?m }"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2536
    with Suc.hyps[OF _ _ *] Suc.prems
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2537
    show thesis by (simp add: Let_def lazy_conj)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2538
  next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2539
    assume *: "x \<in> { ?m .. u }"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2540
    with Suc.hyps[OF _ _ *] Suc.prems
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2541
    show thesis by (simp add: Let_def lazy_conj)
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2542
  qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2543
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2544
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2545
lemma approx_form_aux:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2546
  assumes "approx_form prec f vs ss"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2547
  and "bounded_by xs vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2548
  shows "interpret_form f xs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2549
using assms proof (induct f arbitrary: vs)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2550
  case (Bound x a b f)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2551
  then obtain n
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2552
    where x_eq: "x = Var n" by (cases x) auto
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2553
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2554
  with Bound.prems obtain l u' l' u
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2555
    where l_eq: "Some (l, u') = approx prec a vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2556
    and u_eq: "Some (l', u) = approx prec b vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2557
    and approx_form': "approx_form' prec f (ss ! n) n l u vs ss"
37411
c88c44156083 removed simplifier congruence rule of "prod_case"
haftmann
parents: 37391
diff changeset
  2558
    by (cases "approx prec a vs", simp) (cases "approx prec b vs", auto)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2559
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2560
  { assume "xs ! n \<in> { interpret_floatarith a xs .. interpret_floatarith b xs }"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2561
    with approx[OF Bound.prems(2) l_eq] and approx[OF Bound.prems(2) u_eq]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2562
    have "xs ! n \<in> { l .. u}" by auto
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2563
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2564
    from approx_form_approx_form'[OF approx_form' this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2565
    obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2566
      and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" .
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2567
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2568
    from `bounded_by xs vs` bnds
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2569
    have "bounded_by xs (vs[n := Some (lx, ux)])" by (rule bounded_by_update)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2570
    with Bound.hyps[OF approx_form]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2571
    have "interpret_form f xs" by blast }
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2572
  thus ?case using interpret_form.simps x_eq and interpret_floatarith.simps by simp
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2573
next
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2574
  case (Assign x a f)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2575
  then obtain n
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2576
    where x_eq: "x = Var n" by (cases x) auto
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2577
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2578
  with Assign.prems obtain l u' l' u
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2579
    where bnd_eq: "Some (l, u) = approx prec a vs"
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2580
    and x_eq: "x = Var n"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2581
    and approx_form': "approx_form' prec f (ss ! n) n l u vs ss"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2582
    by (cases "approx prec a vs") auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2583
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2584
  { assume bnds: "xs ! n = interpret_floatarith a xs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2585
    with approx[OF Assign.prems(2) bnd_eq]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2586
    have "xs ! n \<in> { l .. u}" by auto
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2587
    from approx_form_approx_form'[OF approx_form' this]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2588
    obtain lx ux where bnds: "xs ! n \<in> { lx .. ux }"
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2589
      and approx_form: "approx_form prec f (vs[n := Some (lx, ux)]) ss" .
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2590
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2591
    from `bounded_by xs vs` bnds
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2592
    have "bounded_by xs (vs[n := Some (lx, ux)])" by (rule bounded_by_update)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2593
    with Assign.hyps[OF approx_form]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2594
    have "interpret_form f xs" by blast }
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2595
  thus ?case using interpret_form.simps x_eq and interpret_floatarith.simps by simp
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2596
next
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2597
  case (Less a b)
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2598
  then obtain l u l' u'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2599
    where l_eq: "Some (l, u) = approx prec a vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2600
    and u_eq: "Some (l', u') = approx prec b vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2601
    and inequality: "u < l'"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2602
    by (cases "approx prec a vs", auto,
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2603
      cases "approx prec b vs", auto)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2604
  from inequality[unfolded less_float_def] approx[OF Less.prems(2) l_eq] approx[OF Less.prems(2) u_eq]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2605
  show ?case by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2606
next
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2607
  case (LessEqual a b)
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2608
  then obtain l u l' u'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2609
    where l_eq: "Some (l, u) = approx prec a vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2610
    and u_eq: "Some (l', u') = approx prec b vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2611
    and inequality: "u \<le> l'"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2612
    by (cases "approx prec a vs", auto,
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2613
      cases "approx prec b vs", auto)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2614
  from inequality[unfolded le_float_def] approx[OF LessEqual.prems(2) l_eq] approx[OF LessEqual.prems(2) u_eq]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2615
  show ?case by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2616
next
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2617
  case (AtLeastAtMost x a b)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2618
  then obtain lx ux l u l' u'
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2619
    where x_eq: "Some (lx, ux) = approx prec x vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2620
    and l_eq: "Some (l, u) = approx prec a vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2621
    and u_eq: "Some (l', u') = approx prec b vs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2622
    and inequality: "u \<le> lx \<and> ux \<le> l'"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2623
    by (cases "approx prec x vs", auto,
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2624
      cases "approx prec a vs", auto,
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2625
      cases "approx prec b vs", auto, blast)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2626
  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]
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2627
  show ?case by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2628
qed
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2629
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2630
lemma approx_form:
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2631
  assumes "n = length xs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2632
  assumes "approx_form prec f (replicate n None) ss"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2633
  shows "interpret_form f xs"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  2634
  using approx_form_aux[OF _ bounded_by_None] assms by auto
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  2635
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2636
subsection {* Implementing Taylor series expansion *}
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2637
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2638
fun isDERIV :: "nat \<Rightarrow> floatarith \<Rightarrow> real list \<Rightarrow> bool" where
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2639
"isDERIV x (Add a b) vs         = (isDERIV x a vs \<and> isDERIV x b vs)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2640
"isDERIV x (Mult a b) vs        = (isDERIV x a vs \<and> isDERIV x b vs)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2641
"isDERIV x (Minus a) vs         = isDERIV x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2642
"isDERIV x (Inverse a) vs       = (isDERIV x a vs \<and> interpret_floatarith a vs \<noteq> 0)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2643
"isDERIV x (Cos a) vs           = isDERIV x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2644
"isDERIV x (Arctan a) vs        = isDERIV x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2645
"isDERIV x (Min a b) vs         = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2646
"isDERIV x (Max a b) vs         = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2647
"isDERIV x (Abs a) vs           = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2648
"isDERIV x Pi vs                = True" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2649
"isDERIV x (Sqrt a) vs          = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2650
"isDERIV x (Exp a) vs           = isDERIV x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2651
"isDERIV x (Ln a) vs            = (isDERIV x a vs \<and> interpret_floatarith a vs > 0)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2652
"isDERIV x (Power a 0) vs       = True" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2653
"isDERIV x (Power a (Suc n)) vs = isDERIV x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2654
"isDERIV x (Num f) vs           = True" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2655
"isDERIV x (Var n) vs          = True"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2656
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2657
fun DERIV_floatarith :: "nat \<Rightarrow> floatarith \<Rightarrow> floatarith" where
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2658
"DERIV_floatarith x (Add a b)         = Add (DERIV_floatarith x a) (DERIV_floatarith x b)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2659
"DERIV_floatarith x (Mult a b)        = Add (Mult a (DERIV_floatarith x b)) (Mult (DERIV_floatarith x a) b)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2660
"DERIV_floatarith x (Minus a)         = Minus (DERIV_floatarith x a)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2661
"DERIV_floatarith x (Inverse a)       = Minus (Mult (DERIV_floatarith x a) (Inverse (Power a 2)))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2662
"DERIV_floatarith x (Cos a)           = Minus (Mult (Cos (Add (Mult Pi (Num (Float 1 -1))) (Minus a))) (DERIV_floatarith x a))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2663
"DERIV_floatarith x (Arctan a)        = Mult (Inverse (Add (Num 1) (Power a 2))) (DERIV_floatarith x a)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2664
"DERIV_floatarith x (Min a b)         = Num 0" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2665
"DERIV_floatarith x (Max a b)         = Num 0" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2666
"DERIV_floatarith x (Abs a)           = Num 0" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2667
"DERIV_floatarith x Pi                = Num 0" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2668
"DERIV_floatarith x (Sqrt a)          = (Mult (Inverse (Mult (Sqrt a) (Num 2))) (DERIV_floatarith x a))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2669
"DERIV_floatarith x (Exp a)           = Mult (Exp a) (DERIV_floatarith x a)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2670
"DERIV_floatarith x (Ln a)            = Mult (Inverse a) (DERIV_floatarith x a)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2671
"DERIV_floatarith x (Power a 0)       = Num 0" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2672
"DERIV_floatarith x (Power a (Suc n)) = Mult (Num (Float (int (Suc n)) 0)) (Mult (Power a n) (DERIV_floatarith x a))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2673
"DERIV_floatarith x (Num f)           = Num 0" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2674
"DERIV_floatarith x (Var n)          = (if x = n then Num 1 else Num 0)"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2675
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2676
lemma DERIV_floatarith:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2677
  assumes "n < length vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2678
  assumes isDERIV: "isDERIV n f (vs[n := x])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2679
  shows "DERIV (\<lambda> x'. interpret_floatarith f (vs[n := x'])) x :>
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2680
               interpret_floatarith (DERIV_floatarith n f) (vs[n := x])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2681
   (is "DERIV (?i f) x :> _")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2682
using isDERIV proof (induct f arbitrary: x)
31881
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2683
     case (Inverse a) thus ?case
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2684
    by (auto intro!: DERIV_intros
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2685
             simp add: algebra_simps power2_eq_square)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2686
next case (Cos a) thus ?case
31881
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2687
  by (auto intro!: DERIV_intros
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2688
           simp del: interpret_floatarith.simps(5)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2689
           simp add: interpret_floatarith_sin interpret_floatarith.simps(5)[of a])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2690
next case (Power a n) thus ?case
31881
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2691
  by (cases n, auto intro!: DERIV_intros
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2692
                    simp del: power_Suc simp add: real_eq_of_nat)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2693
next case (Ln a) thus ?case
31881
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2694
    by (auto intro!: DERIV_intros simp add: divide_inverse)
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2695
next case (Var i) thus ?case using `n < length vs` by auto
31881
eba74a5790d2 use DERIV_intros
hoelzl
parents: 31863
diff changeset
  2696
qed (auto intro!: DERIV_intros)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2697
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2698
declare approx.simps[simp del]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2699
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2700
fun isDERIV_approx :: "nat \<Rightarrow> nat \<Rightarrow> floatarith \<Rightarrow> (float * float) option list \<Rightarrow> bool" where
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2701
"isDERIV_approx prec x (Add a b) vs         = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2702
"isDERIV_approx prec x (Mult a b) vs        = (isDERIV_approx prec x a vs \<and> isDERIV_approx prec x b vs)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2703
"isDERIV_approx prec x (Minus a) vs         = isDERIV_approx prec x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2704
"isDERIV_approx prec x (Inverse a) vs       =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2705
  (isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l \<or> u < 0 | None \<Rightarrow> False))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2706
"isDERIV_approx prec x (Cos a) vs           = isDERIV_approx prec x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2707
"isDERIV_approx prec x (Arctan a) vs        = isDERIV_approx prec x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2708
"isDERIV_approx prec x (Min a b) vs         = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2709
"isDERIV_approx prec x (Max a b) vs         = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2710
"isDERIV_approx prec x (Abs a) vs           = False" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2711
"isDERIV_approx prec x Pi vs                = True" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2712
"isDERIV_approx prec x (Sqrt a) vs          =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2713
  (isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2714
"isDERIV_approx prec x (Exp a) vs           = isDERIV_approx prec x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2715
"isDERIV_approx prec x (Ln a) vs            =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2716
  (isDERIV_approx prec x a vs \<and> (case approx prec a vs of Some (l, u) \<Rightarrow> 0 < l | None \<Rightarrow> False))" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2717
"isDERIV_approx prec x (Power a 0) vs       = True" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2718
"isDERIV_approx prec x (Power a (Suc n)) vs = isDERIV_approx prec x a vs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2719
"isDERIV_approx prec x (Num f) vs           = True" |
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2720
"isDERIV_approx prec x (Var n) vs          = True"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2721
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2722
lemma isDERIV_approx:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2723
  assumes "bounded_by xs vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2724
  and isDERIV_approx: "isDERIV_approx prec x f vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2725
  shows "isDERIV x f xs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2726
using isDERIV_approx proof (induct f)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2727
  case (Inverse a)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2728
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2729
    and *: "0 < l \<or> u < 0"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2730
    by (cases "approx prec a vs", auto)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2731
  with approx[OF `bounded_by xs vs` approx_Some]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2732
  have "interpret_floatarith a xs \<noteq> 0" unfolding less_float_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2733
  thus ?case using Inverse by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2734
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2735
  case (Ln a)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2736
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2737
    and *: "0 < l"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2738
    by (cases "approx prec a vs", auto)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2739
  with approx[OF `bounded_by xs vs` approx_Some]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2740
  have "0 < interpret_floatarith a xs" unfolding less_float_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2741
  thus ?case using Ln by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2742
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2743
  case (Sqrt a)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2744
  then obtain l u where approx_Some: "Some (l, u) = approx prec a vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2745
    and *: "0 < l"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2746
    by (cases "approx prec a vs", auto)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2747
  with approx[OF `bounded_by xs vs` approx_Some]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2748
  have "0 < interpret_floatarith a xs" unfolding less_float_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2749
  thus ?case using Sqrt by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2750
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2751
  case (Power a n) thus ?case by (cases n, auto)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2752
qed auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2753
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2754
lemma bounded_by_update_var:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2755
  assumes "bounded_by xs vs" and "vs ! i = Some (l, u)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2756
  and bnd: "x \<in> { real l .. real u }"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2757
  shows "bounded_by (xs[i := x]) vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2758
proof (cases "i < length xs")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2759
  case False thus ?thesis using `bounded_by xs vs` by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2760
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2761
  let ?xs = "xs[i := x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2762
  case True hence "i < length ?xs" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2763
{ fix j
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2764
  assume "j < length vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2765
  have "case vs ! j of None \<Rightarrow> True | Some (l, u) \<Rightarrow> ?xs ! j \<in> { real l .. real u }"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2766
  proof (cases "vs ! j")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2767
    case (Some b)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2768
    thus ?thesis
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2769
    proof (cases "i = j")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2770
      case True
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2771
      thus ?thesis using `vs ! i = Some (l, u)` Some and bnd `i < length ?xs`
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2772
        by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2773
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2774
      case False
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2775
      thus ?thesis using `bounded_by xs vs`[THEN bounded_byE, OF `j < length vs`] Some
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2776
        by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2777
    qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2778
  qed auto }
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2779
  thus ?thesis unfolding bounded_by_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2780
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2781
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2782
lemma isDERIV_approx':
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2783
  assumes "bounded_by xs vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2784
  and vs_x: "vs ! x = Some (l, u)" and X_in: "X \<in> { real l .. real u }"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2785
  and approx: "isDERIV_approx prec x f vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2786
  shows "isDERIV x f (xs[x := X])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2787
proof -
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2788
  note bounded_by_update_var[OF `bounded_by xs vs` vs_x X_in] approx
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2789
  thus ?thesis by (rule isDERIV_approx)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2790
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2791
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2792
lemma DERIV_approx:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2793
  assumes "n < length xs" and bnd: "bounded_by xs vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2794
  and isD: "isDERIV_approx prec n f vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2795
  and app: "Some (l, u) = approx prec (DERIV_floatarith n f) vs" (is "_ = approx _ ?D _")
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2796
  shows "\<exists>(x::real). l \<le> x \<and> x \<le> u \<and>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2797
             DERIV (\<lambda> x. interpret_floatarith f (xs[n := x])) (xs!n) :> x"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2798
         (is "\<exists> x. _ \<and> _ \<and> DERIV (?i f) _ :> _")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2799
proof (rule exI[of _ "?i ?D (xs!n)"], rule conjI[OF _ conjI])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2800
  let "?i f x" = "interpret_floatarith f (xs[n := x])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2801
  from approx[OF bnd app]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2802
  show "l \<le> ?i ?D (xs!n)" and "?i ?D (xs!n) \<le> u"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2803
    using `n < length xs` by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2804
  from DERIV_floatarith[OF `n < length xs`, of f "xs!n"] isDERIV_approx[OF bnd isD]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2805
  show "DERIV (?i f) (xs!n) :> (?i ?D (xs!n))" by simp
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2806
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2807
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2808
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
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2809
"lift_bin (Some (l1, u1)) (Some (l2, u2)) f = f l1 u1 l2 u2" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2810
"lift_bin a b f = None"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2811
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2812
lemma lift_bin:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2813
  assumes lift_bin_Some: "Some (l, u) = lift_bin a b f"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2814
  obtains l1 u1 l2 u2
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2815
  where "a = Some (l1, u1)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2816
  and "b = Some (l2, u2)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2817
  and "f l1 u1 l2 u2 = Some (l, u)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2818
using assms by (cases a, simp, cases b, simp, auto)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2819
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2820
fun approx_tse where
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2821
"approx_tse prec n 0 c k f bs = approx prec f bs" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2822
"approx_tse prec n (Suc s) c k f bs =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2823
  (if isDERIV_approx prec n f bs then
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2824
    lift_bin (approx prec f (bs[n := Some (c,c)]))
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2825
             (approx_tse prec n s c (Suc k) (DERIV_floatarith n f) bs)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2826
             (\<lambda> l1 u1 l2 u2. approx prec
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2827
                 (Add (Var 0)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2828
                      (Mult (Inverse (Num (Float (int k) 0)))
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2829
                                 (Mult (Add (Var (Suc (Suc 0))) (Minus (Num c)))
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2830
                                       (Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), bs!n])
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2831
  else approx prec f bs)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2832
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2833
lemma bounded_by_Cons:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2834
  assumes bnd: "bounded_by xs vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2835
  and x: "x \<in> { real l .. real u }"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2836
  shows "bounded_by (x#xs) ((Some (l, u))#vs)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2837
proof -
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2838
  { fix i assume *: "i < length ((Some (l, u))#vs)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2839
    have "case ((Some (l,u))#vs) ! i of Some (l, u) \<Rightarrow> (x#xs)!i \<in> { real l .. real u } | None \<Rightarrow> True"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2840
    proof (cases i)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2841
      case 0 with x show ?thesis by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2842
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2843
      case (Suc i) with * have "i < length vs" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2844
      from bnd[THEN bounded_byE, OF this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2845
      show ?thesis unfolding Suc nth_Cons_Suc .
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2846
    qed }
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2847
  thus ?thesis by (auto simp add: bounded_by_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2848
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2849
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2850
lemma approx_tse_generic:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2851
  assumes "bounded_by xs vs"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2852
  and bnd_c: "bounded_by (xs[x := c]) vs" and "x < length vs" and "x < length xs"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2853
  and bnd_x: "vs ! x = Some (lx, ux)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2854
  and ate: "Some (l, u) = approx_tse prec x s c k f vs"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2855
  shows "\<exists> n. (\<forall> m < n. \<forall> (z::real) \<in> {lx .. ux}.
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2856
      DERIV (\<lambda> y. interpret_floatarith ((DERIV_floatarith x ^^ m) f) (xs[x := y])) z :>
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2857
            (interpret_floatarith ((DERIV_floatarith x ^^ (Suc m)) f) (xs[x := z])))
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2858
   \<and> (\<forall> (t::real) \<in> {lx .. ux}.  (\<Sum> i = 0..<n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) *
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2859
                  interpret_floatarith ((DERIV_floatarith x ^^ i) f) (xs[x := c]) *
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2860
                  (xs!x - c)^i) +
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2861
      inverse (real (\<Prod> j \<in> {k..<k+n}. j)) *
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2862
      interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := t]) *
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2863
      (xs!x - c)^n \<in> {l .. u})" (is "\<exists> n. ?taylor f k l u n")
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2864
using ate proof (induct s arbitrary: k f l u)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2865
  case 0
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2866
  { fix t::real assume "t \<in> {lx .. ux}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2867
    note bounded_by_update_var[OF `bounded_by xs vs` bnd_x this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2868
    from approx[OF this 0[unfolded approx_tse.simps]]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2869
    have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2870
      by (auto simp add: algebra_simps)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2871
  } thus ?case by (auto intro!: exI[of _ 0])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2872
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2873
  case (Suc s)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2874
  show ?case
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2875
  proof (cases "isDERIV_approx prec x f vs")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2876
    case False
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2877
    note ap = Suc.prems[unfolded approx_tse.simps if_not_P[OF False]]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2878
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2879
    { fix t::real assume "t \<in> {lx .. ux}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2880
      note bounded_by_update_var[OF `bounded_by xs vs` bnd_x this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2881
      from approx[OF this ap]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2882
      have "(interpret_floatarith f (xs[x := t])) \<in> {l .. u}"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2883
        by (auto simp add: algebra_simps)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2884
    } thus ?thesis by (auto intro!: exI[of _ 0])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2885
  next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2886
    case True
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2887
    with Suc.prems
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2888
    obtain l1 u1 l2 u2
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2889
      where a: "Some (l1, u1) = approx prec f (vs[x := Some (c,c)])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2890
      and ate: "Some (l2, u2) = approx_tse prec x s c (Suc k) (DERIV_floatarith x f) vs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2891
      and final: "Some (l, u) = approx prec
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2892
        (Add (Var 0)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2893
             (Mult (Inverse (Num (Float (int k) 0)))
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2894
                   (Mult (Add (Var (Suc (Suc 0))) (Minus (Num c)))
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  2895
                         (Var (Suc 0))))) [Some (l1, u1), Some (l2, u2), vs!x]"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2896
      by (auto elim!: lift_bin) blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2897
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2898
    from bnd_c `x < length xs`
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2899
    have bnd: "bounded_by (xs[x:=c]) (vs[x:= Some (c,c)])"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2900
      by (auto intro!: bounded_by_update)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2901
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2902
    from approx[OF this a]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2903
    have f_c: "interpret_floatarith ((DERIV_floatarith x ^^ 0) f) (xs[x := c]) \<in> { l1 .. u1 }"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2904
              (is "?f 0 (real c) \<in> _")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2905
      by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2906
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2907
    { fix f :: "'a \<Rightarrow> 'a" fix n :: nat fix x :: 'a
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2908
      have "(f ^^ Suc n) x = (f ^^ n) (f x)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2909
        by (induct n, auto) }
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2910
    note funpow_Suc = this[symmetric]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2911
    from Suc.hyps[OF ate, unfolded this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2912
    obtain n
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2913
      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"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2914
      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) +
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2915
           inverse (real (\<Prod> j \<in> {Suc k..<Suc k + n}. j)) * ?f (Suc n) t * (xs!x - c)^n \<in> {l2 .. u2}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2916
          (is "\<forall> t \<in> _. ?X (Suc k) f n t \<in> _")
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2917
      by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2918
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2919
    { fix m and z::real
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2920
      assume "m < Suc n" and bnd_z: "z \<in> { lx .. ux }"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2921
      have "DERIV (?f m) z :> ?f (Suc m) z"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2922
      proof (cases m)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2923
        case 0
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2924
        with DERIV_floatarith[OF `x < length xs` isDERIV_approx'[OF `bounded_by xs vs` bnd_x bnd_z True]]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2925
        show ?thesis by simp
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2926
      next
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2927
        case (Suc m')
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2928
        hence "m' < n" using `m < Suc n` by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2929
        from DERIV_hyp[OF this bnd_z]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2930
        show ?thesis using Suc by simp
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2931
      qed } note DERIV = this
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2932
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2933
    have "\<And> k i. k < i \<Longrightarrow> {k ..< i} = insert k {Suc k ..< i}" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2934
    hence setprod_head_Suc: "\<And> k i. \<Prod> {k ..< k + Suc i} = k * \<Prod> {Suc k ..< Suc k + i}" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2935
    have setsum_move0: "\<And> k F. setsum F {0..<Suc k} = F 0 + setsum (\<lambda> k. F (Suc k)) {0..<k}"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2936
      unfolding setsum_shift_bounds_Suc_ivl[symmetric]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2937
      unfolding setsum_head_upt_Suc[OF zero_less_Suc] ..
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2938
    def C \<equiv> "xs!x - c"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2939
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2940
    { fix t::real assume t: "t \<in> {lx .. ux}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2941
      hence "bounded_by [xs!x] [vs!x]"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2942
        using `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2943
        by (cases "vs!x", auto simp add: bounded_by_def)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2944
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2945
      with hyp[THEN bspec, OF t] f_c
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2946
      have "bounded_by [?f 0 c, ?X (Suc k) f n t, xs!x] [Some (l1, u1), Some (l2, u2), vs!x]"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2947
        by (auto intro!: bounded_by_Cons)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2948
      from approx[OF this final, unfolded atLeastAtMost_iff[symmetric]]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2949
      have "?X (Suc k) f n t * (xs!x - real c) * inverse k + ?f 0 c \<in> {l .. u}"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2950
        by (auto simp add: algebra_simps)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2951
      also have "?X (Suc k) f n t * (xs!x - real c) * inverse (real k) + ?f 0 c =
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2952
               (\<Sum> i = 0..<Suc n. inverse (real (\<Prod> j \<in> {k..<k+i}. j)) * ?f i c * (xs!x - c)^i) +
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2953
               inverse (real (\<Prod> j \<in> {k..<k+Suc n}. j)) * ?f (Suc n) t * (xs!x - c)^Suc n" (is "_ = ?T")
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  2954
        unfolding funpow_Suc C_def[symmetric] setsum_move0 setprod_head_Suc
35082
96a21dd3b349 rely less on ordered rewriting
haftmann
parents: 35028
diff changeset
  2955
        by (auto simp add: algebra_simps)
96a21dd3b349 rely less on ordered rewriting
haftmann
parents: 35028
diff changeset
  2956
          (simp only: mult_left_commute [of _ "inverse (real k)"] setsum_right_distrib [symmetric])
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2957
      finally have "?T \<in> {l .. u}" . }
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2958
    thus ?thesis using DERIV by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2959
  qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2960
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2961
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2962
lemma setprod_fact: "\<Prod> {1..<1 + k} = fact (k :: nat)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2963
proof (induct k)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2964
  case (Suc k)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2965
  have "{ 1 ..< Suc (Suc k) } = insert (Suc k) { 1 ..< Suc k }" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2966
  hence "\<Prod> { 1 ..< Suc (Suc k) } = (Suc k) * \<Prod> { 1 ..< Suc k }" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2967
  thus ?case using Suc by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2968
qed simp
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2969
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2970
lemma approx_tse:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2971
  assumes "bounded_by xs vs"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2972
  and bnd_x: "vs ! x = Some (lx, ux)" and bnd_c: "real c \<in> {lx .. ux}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2973
  and "x < length vs" and "x < length xs"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2974
  and ate: "Some (l, u) = approx_tse prec x s c 1 f vs"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2975
  shows "interpret_floatarith f xs \<in> { l .. u }"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2976
proof -
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2977
  def F \<equiv> "\<lambda> n z. interpret_floatarith ((DERIV_floatarith x ^^ n) f) (xs[x := z])"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2978
  hence F0: "F 0 = (\<lambda> z. interpret_floatarith f (xs[x := z]))" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2979
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2980
  hence "bounded_by (xs[x := c]) vs" and "x < length vs" "x < length xs"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2981
    using `bounded_by xs vs` bnd_x bnd_c `x < length vs` `x < length xs`
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2982
    by (auto intro!: bounded_by_update_var)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2983
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2984
  from approx_tse_generic[OF `bounded_by xs vs` this bnd_x ate]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2985
  obtain n
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2986
    where DERIV: "\<forall> m z. m < n \<and> real lx \<le> z \<and> z \<le> real ux \<longrightarrow> DERIV (F m) z :> F (Suc m) z"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2987
    and hyp: "\<And> (t::real). t \<in> {lx .. ux} \<Longrightarrow>
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2988
           (\<Sum> j = 0..<n. inverse (real (fact j)) * F j c * (xs!x - c)^j) +
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2989
             inverse (real (fact n)) * F n t * (xs!x - c)^n
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2990
             \<in> {l .. u}" (is "\<And> t. _ \<Longrightarrow> ?taylor t \<in> _")
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2991
    unfolding F_def atLeastAtMost_iff[symmetric] setprod_fact by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2992
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  2993
  have bnd_xs: "xs ! x \<in> { lx .. ux }"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2994
    using `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`] bnd_x by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2995
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2996
  show ?thesis
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2997
  proof (cases n)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2998
    case 0 thus ?thesis using hyp[OF bnd_xs] unfolding F_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  2999
  next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3000
    case (Suc n')
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3001
    show ?thesis
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3002
    proof (cases "xs ! x = c")
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3003
      case True
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3004
      from True[symmetric] hyp[OF bnd_xs] Suc show ?thesis
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3005
        unfolding F_def Suc setsum_head_upt_Suc[OF zero_less_Suc] setsum_shift_bounds_Suc_ivl by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3006
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3007
      case False
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3008
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3009
      have "lx \<le> real c" "real c \<le> ux" "lx \<le> xs!x" "xs!x \<le> ux"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3010
        using Suc bnd_c `bounded_by xs vs`[THEN bounded_byE, OF `x < length vs`] bnd_x by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3011
      from Taylor.taylor[OF zero_less_Suc, of F, OF F0 DERIV[unfolded Suc] this False]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3012
      obtain t::real where t_bnd: "if xs ! x < c then xs ! x < t \<and> t < c else c < t \<and> t < xs ! x"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3013
        and fl_eq: "interpret_floatarith f (xs[x := xs ! x]) =
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3014
           (\<Sum>m = 0..<Suc n'. F m c / real (fact m) * (xs ! x - c) ^ m) +
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3015
           F (Suc n') t / real (fact (Suc n')) * (xs ! x - c) ^ Suc n'"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3016
        by blast
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3017
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3018
      from t_bnd bnd_xs bnd_c have *: "t \<in> {lx .. ux}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3019
        by (cases "xs ! x < c", auto)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3020
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3021
      have "interpret_floatarith f (xs[x := xs ! x]) = ?taylor t"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3022
        unfolding fl_eq Suc by (auto simp add: algebra_simps divide_inverse)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3023
      also have "\<dots> \<in> {l .. u}" using * by (rule hyp)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3024
      finally show ?thesis by simp
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3025
    qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3026
  qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3027
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3028
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3029
fun approx_tse_form' where
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3030
"approx_tse_form' prec t f 0 l u cmp =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3031
  (case approx_tse prec 0 t ((l + u) * Float 1 -1) 1 f [Some (l, u)]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3032
     of Some (l, u) \<Rightarrow> cmp l u | None \<Rightarrow> False)" |
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3033
"approx_tse_form' prec t f (Suc s) l u cmp =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3034
  (let m = (l + u) * Float 1 -1
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3035
   in (if approx_tse_form' prec t f s l m cmp then
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3036
      approx_tse_form' prec t f s m u cmp else False))"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3037
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3038
lemma approx_tse_form':
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3039
  fixes x :: real
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3040
  assumes "approx_tse_form' prec t f s l u cmp" and "x \<in> {l .. u}"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3041
  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>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3042
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3043
using assms proof (induct s arbitrary: l u)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3044
  case 0
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3045
  then obtain ly uy
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3046
    where *: "approx_tse prec 0 t ((l + u) * Float 1 -1) 1 f [Some (l, u)] = Some (ly, uy)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3047
    and **: "cmp ly uy" by (auto elim!: option_caseE)
46545
haftmann
parents: 45481
diff changeset
  3048
  with 0 show ?case by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3049
next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3050
  case (Suc s)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3051
  let ?m = "(l + u) * Float 1 -1"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3052
  from Suc.prems
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3053
  have l: "approx_tse_form' prec t f s l ?m cmp"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3054
    and u: "approx_tse_form' prec t f s ?m u cmp"
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3055
    by (auto simp add: Let_def lazy_conj)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3056
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3057
  have m_l: "real l \<le> ?m" and m_u: "?m \<le> real u"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3058
    unfolding le_float_def using Suc.prems by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3059
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3060
  with `x \<in> { l .. u }`
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3061
  have "x \<in> { l .. ?m} \<or> x \<in> { ?m .. u }" by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3062
  thus ?case
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3063
  proof (rule disjE)
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3064
    assume "x \<in> { l .. ?m}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3065
    from Suc.hyps[OF l this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3066
    obtain l' u' ly uy
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3067
      where "x \<in> { l' .. u' } \<and> real l \<le> l' \<and> real u' \<le> ?m \<and> cmp ly uy \<and>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3068
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)" by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3069
    with m_u show ?thesis by (auto intro!: exI)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3070
  next
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3071
    assume "x \<in> { ?m .. u }"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3072
    from Suc.hyps[OF u this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3073
    obtain l' u' ly uy
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3074
      where "x \<in> { l' .. u' } \<and> ?m \<le> real l' \<and> u' \<le> real u \<and> cmp ly uy \<and>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3075
                  approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 f [Some (l', u')] = Some (ly, uy)" by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3076
    with m_u show ?thesis by (auto intro!: exI)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3077
  qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3078
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3079
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3080
lemma approx_tse_form'_less:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3081
  fixes x :: real
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3082
  assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 < l)"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3083
  and x: "x \<in> {l .. u}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3084
  shows "interpret_floatarith b [x] < interpret_floatarith a [x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3085
proof -
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3086
  from approx_tse_form'[OF tse x]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3087
  obtain l' u' ly uy
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3088
    where x': "x \<in> { l' .. u' }" and "l \<le> real l'"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3089
    and "real u' \<le> u" and "0 < ly"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3090
    and tse: "approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3091
    by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3092
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3093
  hence "bounded_by [x] [Some (l', u')]" by (auto simp add: bounded_by_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3094
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3095
  from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x'
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3096
  have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3097
    by (auto simp add: diff_minus)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3098
  from order_less_le_trans[OF `0 < ly`[unfolded less_float_def] this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3099
  show ?thesis by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3100
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3101
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3102
lemma approx_tse_form'_le:
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3103
  fixes x :: real
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3104
  assumes tse: "approx_tse_form' prec t (Add a (Minus b)) s l u (\<lambda> l u. 0 \<le> l)"
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3105
  and x: "x \<in> {l .. u}"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3106
  shows "interpret_floatarith b [x] \<le> interpret_floatarith a [x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3107
proof -
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3108
  from approx_tse_form'[OF tse x]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3109
  obtain l' u' ly uy
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3110
    where x': "x \<in> { l' .. u' }" and "l \<le> real l'"
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3111
    and "real u' \<le> u" and "0 \<le> ly"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3112
    and tse: "approx_tse prec 0 t ((l' + u') * Float 1 -1) 1 (Add a (Minus b)) [Some (l', u')] = Some (ly, uy)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3113
    by blast
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3114
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3115
  hence "bounded_by [x] [Some (l', u')]" by (auto simp add: bounded_by_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3116
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3117
  from approx_tse[OF this _ _ _ _ tse[symmetric], of l' u'] x'
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3118
  have "ly \<le> interpret_floatarith a [x] - interpret_floatarith b [x]"
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3119
    by (auto simp add: diff_minus)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3120
  from order_trans[OF `0 \<le> ly`[unfolded le_float_def] this]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3121
  show ?thesis by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3122
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3123
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3124
definition
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3125
"approx_tse_form prec t s f =
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3126
  (case f
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3127
   of (Bound x a b f) \<Rightarrow> x = Var 0 \<and>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3128
     (case (approx prec a [None], approx prec b [None])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3129
      of (Some (l, u), Some (l', u')) \<Rightarrow>
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3130
        (case f
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3131
         of Less lf rt \<Rightarrow> approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3132
          | LessEqual lf rt \<Rightarrow> approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3133
          | AtLeastAtMost x lf rt \<Rightarrow>
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3134
            (if approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l) then
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3135
            approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l) else False)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3136
          | _ \<Rightarrow> False)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3137
       | _ \<Rightarrow> False)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3138
   | _ \<Rightarrow> False)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3139
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3140
lemma approx_tse_form:
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3141
  assumes "approx_tse_form prec t s f"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3142
  shows "interpret_form f [x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3143
proof (cases f)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3144
  case (Bound i a b f') note f_def = this
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3145
  with assms obtain l u l' u'
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3146
    where a: "approx prec a [None] = Some (l, u)"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3147
    and b: "approx prec b [None] = Some (l', u')"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3148
    unfolding approx_tse_form_def by (auto elim!: option_caseE)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3149
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3150
  from Bound assms have "i = Var 0" unfolding approx_tse_form_def by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3151
  hence i: "interpret_floatarith i [x] = x" by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3152
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3153
  { let "?f z" = "interpret_floatarith z [x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3154
    assume "?f i \<in> { ?f a .. ?f b }"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3155
    with approx[OF _ a[symmetric], of "[x]"] approx[OF _ b[symmetric], of "[x]"]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3156
    have bnd: "x \<in> { l .. u'}" unfolding bounded_by_def i by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3157
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3158
    have "interpret_form f' [x]"
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3159
    proof (cases f')
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3160
      case (Less lf rt)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3161
      with Bound a b assms
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3162
      have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 < l)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3163
        unfolding approx_tse_form_def by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3164
      from approx_tse_form'_less[OF this bnd]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3165
      show ?thesis using Less by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3166
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3167
      case (LessEqual lf rt)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3168
      with Bound a b assms
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3169
      have "approx_tse_form' prec t (Add rt (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3170
        unfolding approx_tse_form_def by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3171
      from approx_tse_form'_le[OF this bnd]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3172
      show ?thesis using LessEqual by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3173
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3174
      case (AtLeastAtMost x lf rt)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3175
      with Bound a b assms
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3176
      have "approx_tse_form' prec t (Add rt (Minus x)) s l u' (\<lambda> l u. 0 \<le> l)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3177
        and "approx_tse_form' prec t (Add x (Minus lf)) s l u' (\<lambda> l u. 0 \<le> l)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32920
diff changeset
  3178
        unfolding approx_tse_form_def lazy_conj by auto
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3179
      from approx_tse_form'_le[OF this(1) bnd] approx_tse_form'_le[OF this(2) bnd]
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3180
      show ?thesis using AtLeastAtMost by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3181
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3182
      case (Bound x a b f') with assms
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3183
      show ?thesis by (auto elim!: option_caseE simp add: f_def approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3184
    next
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3185
      case (Assign x a f') with assms
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3186
      show ?thesis by (auto elim!: option_caseE simp add: f_def approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3187
    qed } thus ?thesis unfolding f_def by auto
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3188
next case Assign with assms show ?thesis by (auto simp add: approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3189
next case LessEqual with assms show ?thesis by (auto simp add: approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3190
next case Less with assms show ?thesis by (auto simp add: approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3191
next case AtLeastAtMost with assms show ?thesis by (auto simp add: approx_tse_form_def)
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3192
qed
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3193
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3194
text {* @{term approx_form_eval} is only used for the {\tt value}-command. *}
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3195
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3196
fun approx_form_eval :: "nat \<Rightarrow> form \<Rightarrow> (float * float) option list \<Rightarrow> (float * float) option list" where
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3197
"approx_form_eval prec (Bound (Var n) a b f) bs =
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3198
   (case (approx prec a bs, approx prec b bs)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3199
   of (Some (l, _), Some (_, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)])
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3200
    | _ \<Rightarrow> bs)" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3201
"approx_form_eval prec (Assign (Var n) a f) bs =
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3202
   (case (approx prec a bs)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3203
   of (Some (l, u)) \<Rightarrow> approx_form_eval prec f (bs[n := Some (l, u)])
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3204
    | _ \<Rightarrow> bs)" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3205
"approx_form_eval prec (Less a b) bs = bs @ [approx prec a bs, approx prec b bs]" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3206
"approx_form_eval prec (LessEqual a b) bs = bs @ [approx prec a bs, approx prec b bs]" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3207
"approx_form_eval prec (AtLeastAtMost x a b) bs =
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3208
   bs @ [approx prec x bs, approx prec a bs, approx prec b bs]" |
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3209
"approx_form_eval _ _ bs = bs"
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3210
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3211
subsection {* Implement proof method \texttt{approximation} *}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3212
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3213
lemmas interpret_form_equations = interpret_form.simps interpret_floatarith.simps interpret_floatarith_num
31098
73dd67adf90a replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith
hoelzl
parents: 30971
diff changeset
  3214
  interpret_floatarith_divide interpret_floatarith_diff interpret_floatarith_tan interpret_floatarith_powr interpret_floatarith_log
31467
f7d2aa438bee Approximation: Implemented argument reduction for cosine. Sinus is now implemented in terms of cosine. Sqrt computes on the entire real numbers
hoelzl
parents: 31148
diff changeset
  3215
  interpret_floatarith_sin
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3216
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3217
oracle approximation_oracle = {* fn (thy, t) =>
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3218
let
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3219
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3220
  fun bad t = error ("Bad term: " ^ Syntax.string_of_term_global thy t);
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3221
38716
3c3b4ad683d5 approximation_oracle: actually match true/false in ML, not arbitrary values;
wenzelm
parents: 38558
diff changeset
  3222
  fun term_of_bool true = @{term True}
3c3b4ad683d5 approximation_oracle: actually match true/false in ML, not arbitrary values;
wenzelm
parents: 38558
diff changeset
  3223
    | term_of_bool false = @{term False};
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3224
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3225
  fun term_of_float (@{code Float} (k, l)) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3226
    @{term Float} $ HOLogic.mk_number @{typ int} k $ HOLogic.mk_number @{typ int} l;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3227
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3228
  fun term_of_float_float_option NONE = @{term "None :: (float \<times> float) option"}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3229
    | term_of_float_float_option (SOME ff) = @{term "Some :: float \<times> float \<Rightarrow> _"}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3230
        $ HOLogic.mk_prod (pairself term_of_float ff);
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3231
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3232
  val term_of_float_float_option_list =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3233
    HOLogic.mk_list @{typ "(float \<times> float) option"} o map term_of_float_float_option;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3234
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3235
  fun nat_of_term t = HOLogic.dest_nat t handle TERM _ => snd (HOLogic.dest_number t);
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3236
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3237
  fun float_of_term (@{term Float} $ k $ l) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3238
        @{code Float} (snd (HOLogic.dest_number k), snd (HOLogic.dest_number l))
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3239
    | float_of_term t = bad t;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3240
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3241
  fun floatarith_of_term (@{term Add} $ a $ b) = @{code Add} (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3242
    | floatarith_of_term (@{term Minus} $ a) = @{code Minus} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3243
    | floatarith_of_term (@{term Mult} $ a $ b) = @{code Mult} (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3244
    | floatarith_of_term (@{term Inverse} $ a) = @{code Inverse} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3245
    | floatarith_of_term (@{term Cos} $ a) = @{code Cos} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3246
    | floatarith_of_term (@{term Arctan} $ a) = @{code Arctan} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3247
    | floatarith_of_term (@{term Abs} $ a) = @{code Abs} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3248
    | floatarith_of_term (@{term Max} $ a $ b) = @{code Max} (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3249
    | floatarith_of_term (@{term Min} $ a $ b) = @{code Min} (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3250
    | floatarith_of_term @{term Pi} = @{code Pi}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3251
    | floatarith_of_term (@{term Sqrt} $ a) = @{code Sqrt} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3252
    | floatarith_of_term (@{term Exp} $ a) = @{code Exp} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3253
    | floatarith_of_term (@{term Ln} $ a) = @{code Ln} (floatarith_of_term a)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3254
    | floatarith_of_term (@{term Power} $ a $ n) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3255
        @{code Power} (floatarith_of_term a, nat_of_term n)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3256
    | floatarith_of_term (@{term Var} $ n) = @{code Var} (nat_of_term n)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3257
    | floatarith_of_term (@{term Num} $ m) = @{code Num} (float_of_term m)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3258
    | floatarith_of_term t = bad t;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3259
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3260
  fun form_of_term (@{term Bound} $ a $ b $ c $ p) = @{code Bound}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3261
        (floatarith_of_term a, floatarith_of_term b, floatarith_of_term c, form_of_term p)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3262
    | form_of_term (@{term Assign} $ a $ b $ p) = @{code Assign}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3263
        (floatarith_of_term a, floatarith_of_term b, form_of_term p)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3264
    | form_of_term (@{term Less} $ a $ b) = @{code Less}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3265
        (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3266
    | form_of_term (@{term LessEqual} $ a $ b) = @{code LessEqual}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3267
        (floatarith_of_term a, floatarith_of_term b)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3268
    | form_of_term (@{term AtLeastAtMost} $ a $ b $ c) = @{code AtLeastAtMost}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3269
        (floatarith_of_term a, floatarith_of_term b, floatarith_of_term c)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3270
    | form_of_term t = bad t;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3271
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3272
  fun float_float_option_of_term @{term "None :: (float \<times> float) option"} = NONE
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3273
    | float_float_option_of_term (@{term "Some :: float \<times> float \<Rightarrow> _"} $ ff) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3274
        SOME (pairself float_of_term (HOLogic.dest_prod ff))
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3275
    | float_float_option_of_term (@{term approx'} $ n $ a $ ffs) = @{code approx'}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3276
        (nat_of_term n) (floatarith_of_term a) (float_float_option_list_of_term ffs)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3277
    | float_float_option_of_term t = bad t
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3278
  and float_float_option_list_of_term
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3279
        (@{term "replicate :: _ \<Rightarrow> (float \<times> float) option \<Rightarrow> _"} $ n $ @{term "None :: (float \<times> float) option"}) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3280
          @{code replicate} (nat_of_term n) NONE
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3281
    | float_float_option_list_of_term (@{term approx_form_eval} $ n $ p $ ffs) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3282
        @{code approx_form_eval} (nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3283
    | float_float_option_list_of_term t = map float_float_option_of_term
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3284
        (HOLogic.dest_list t);
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3285
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3286
  val nat_list_of_term = map nat_of_term o HOLogic.dest_list ;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3287
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3288
  fun bool_of_term (@{term approx_form} $ n $ p $ ffs $ ms) = @{code approx_form}
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3289
        (nat_of_term n) (form_of_term p) (float_float_option_list_of_term ffs) (nat_list_of_term ms)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3290
    | bool_of_term (@{term approx_tse_form} $ m $ n $ q $ p) =
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3291
        @{code approx_tse_form} (nat_of_term m) (nat_of_term n) (nat_of_term q) (form_of_term p)
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3292
    | bool_of_term t = bad t;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3293
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3294
  fun eval t = case fastype_of t
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3295
   of @{typ bool} =>
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3296
        (term_of_bool o bool_of_term) t
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3297
    | @{typ "(float \<times> float) option"} =>
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3298
        (term_of_float_float_option o float_float_option_of_term) t
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3299
    | @{typ "(float \<times> float) option list"} =>
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3300
        (term_of_float_float_option_list o float_float_option_list_of_term) t
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3301
    | _ => bad t;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3302
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3303
  val normalize = eval o Envir.beta_norm o Pattern.eta_long [];
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3304
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3305
in Thm.cterm_of thy (Logic.mk_equals (t, normalize t)) end
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3306
*}
31099
03314c427b34 optimized Approximation by precompiling approx_inequality
hoelzl
parents: 31098
diff changeset
  3307
03314c427b34 optimized Approximation by precompiling approx_inequality
hoelzl
parents: 31098
diff changeset
  3308
ML {*
32212
21d7b4524395 replaced old METAHYPS by FOCUS;
wenzelm
parents: 31881
diff changeset
  3309
  fun reorder_bounds_tac prems i =
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3310
    let
38558
32ad17fe2b9c tuned quotes
haftmann
parents: 38549
diff changeset
  3311
      fun variable_of_bound (Const (@{const_name Trueprop}, _) $
37677
c5a8b612e571 qualified constants Set.member and Set.Collect
haftmann
parents: 37411
diff changeset
  3312
                             (Const (@{const_name Set.member}, _) $
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3313
                              Free (name, _) $ _)) = name
38558
32ad17fe2b9c tuned quotes
haftmann
parents: 38549
diff changeset
  3314
        | variable_of_bound (Const (@{const_name Trueprop}, _) $
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38786
diff changeset
  3315
                             (Const (@{const_name HOL.eq}, _) $
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3316
                              Free (name, _) $ _)) = name
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3317
        | variable_of_bound t = raise TERM ("variable_of_bound", [t])
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3318
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3319
      val variable_bounds
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3320
        = map (` (variable_of_bound o prop_of)) prems
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3321
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3322
      fun add_deps (name, bnds)
32650
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3323
        = Graph.add_deps_acyclic (name,
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3324
            remove (op =) name (Term.add_free_names (prop_of bnds) []))
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3325
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3326
      val order = Graph.empty
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3327
                  |> fold Graph.new_node variable_bounds
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3328
                  |> fold add_deps variable_bounds
32650
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3329
                  |> Graph.strong_conn |> map the_single |> rev
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3330
                  |> map_filter (AList.lookup (op =) variable_bounds)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3331
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3332
      fun prepend_prem th tac
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3333
        = tac THEN rtac (th RSN (2, @{thm mp})) i
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3334
    in
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3335
      fold prepend_prem order all_tac
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3336
    end
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3337
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3338
  fun approximation_conv ctxt ct =
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3339
    approximation_oracle (Proof_Context.theory_of ctxt, Thm.term_of ct |> tap (tracing o Syntax.string_of_term ctxt));
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3340
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3341
  fun approximate ctxt t =
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3342
    approximation_oracle (Proof_Context.theory_of ctxt, t)
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3343
    |> Thm.prop_of |> Logic.dest_equals |> snd;
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3344
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3345
  (* Should be in HOL.thy ? *)
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3346
  fun gen_eval_tac conv ctxt = CONVERSION
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3347
    (Object_Logic.judgment_conv (Conv.params_conv (~1) (K (Conv.concl_conv (~1) conv)) ctxt))
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3348
    THEN' rtac TrueI
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3349
39556
32a00ff29d1a more antiquotations;
wenzelm
parents: 38864
diff changeset
  3350
  val form_equations = @{thms interpret_form_equations};
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3351
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3352
  fun rewrite_interpret_form_tac ctxt prec splitting taylor i st = let
46545
haftmann
parents: 45481
diff changeset
  3353
      fun lookup_splitting (Free (name, _))
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3354
        = case AList.lookup (op =) splitting name
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3355
          of SOME s => HOLogic.mk_number @{typ nat} s
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3356
           | NONE => @{term "0 :: nat"}
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3357
      val vs = nth (prems_of st) (i - 1)
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3358
               |> Logic.strip_imp_concl
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3359
               |> HOLogic.dest_Trueprop
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3360
               |> Term.strip_comb |> snd |> List.last
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3361
               |> HOLogic.dest_list
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3362
      val p = prec
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3363
              |> HOLogic.mk_number @{typ nat}
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3364
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3365
    in case taylor
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3366
    of NONE => let
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3367
         val n = vs |> length
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3368
                 |> HOLogic.mk_number @{typ nat}
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3369
                 |> Thm.cterm_of (Proof_Context.theory_of ctxt)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3370
         val s = vs
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3371
                 |> map lookup_splitting
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3372
                 |> HOLogic.mk_list @{typ nat}
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3373
                 |> Thm.cterm_of (Proof_Context.theory_of ctxt)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3374
       in
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3375
         (rtac (Thm.instantiate ([], [(@{cpat "?n::nat"}, n),
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3376
                                     (@{cpat "?prec::nat"}, p),
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3377
                                     (@{cpat "?ss::nat list"}, s)])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3378
              @{thm "approx_form"}) i
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3379
          THEN simp_tac @{simpset} i) st
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3380
       end
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3381
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3382
     | SOME t => if length vs <> 1 then raise (TERM ("More than one variable used for taylor series expansion", [prop_of st]))
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3383
       else let
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3384
         val t = t
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3385
              |> HOLogic.mk_number @{typ nat}
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3386
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3387
         val s = vs |> map lookup_splitting |> hd
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3388
              |> Thm.cterm_of (Proof_Context.theory_of ctxt)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3389
       in
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3390
         rtac (Thm.instantiate ([], [(@{cpat "?s::nat"}, s),
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3391
                                     (@{cpat "?t::nat"}, t),
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3392
                                     (@{cpat "?prec::nat"}, p)])
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3393
              @{thm "approx_tse_form"}) i st
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3394
       end
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3395
    end
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3396
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3397
  (* copied from Tools/induct.ML should probably in args.ML *)
46545
haftmann
parents: 45481
diff changeset
  3398
  val free = Args.context -- Args.term >> (fn (_, Free (n, _)) => n | (ctxt, t) =>
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3399
    error ("Bad free variable: " ^ Syntax.string_of_term ctxt t));
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3400
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3401
*}
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3402
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3403
lemma intervalE: "a \<le> x \<and> x \<le> b \<Longrightarrow> \<lbrakk> x \<in> { a .. b } \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3404
  by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3405
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3406
lemma meta_eqE: "x \<equiv> a \<Longrightarrow> \<lbrakk> x = a \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3407
  by auto
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3408
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
  3409
method_setup approximation = {*
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36778
diff changeset
  3410
  Scan.lift Parse.nat
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3411
  --
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3412
  Scan.optional (Scan.lift (Args.$$$ "splitting" |-- Args.colon)
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36778
diff changeset
  3413
    |-- Parse.and_list' (free --| Scan.lift (Args.$$$ "=") -- Scan.lift Parse.nat)) []
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3414
  --
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3415
  Scan.option (Scan.lift (Args.$$$ "taylor" |-- Args.colon)
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36778
diff changeset
  3416
    |-- (free |-- Scan.lift (Args.$$$ "=") |-- Scan.lift Parse.nat))
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3417
  >>
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3418
  (fn ((prec, splitting), taylor) => fn ctxt =>
30549
d2d7874648bd simplified method setup;
wenzelm
parents: 30510
diff changeset
  3419
    SIMPLE_METHOD' (fn i =>
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3420
      REPEAT (FIRST' [etac @{thm intervalE},
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3421
                      etac @{thm meta_eqE},
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3422
                      rtac @{thm impI}] i)
32283
3bebc195c124 qualified Subgoal.FOCUS;
wenzelm
parents: 32212
diff changeset
  3423
      THEN Subgoal.FOCUS (fn {prems, ...} => reorder_bounds_tac prems i) @{context} i
32650
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3424
      THEN DETERM (TRY (filter_prems_tac (K false) i))
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3425
      THEN DETERM (Reflection.genreify_tac ctxt form_equations NONE i)
31863
e391eee8bf14 Implemented taylor series expansion for approximation
hoelzl
parents: 31811
diff changeset
  3426
      THEN rewrite_interpret_form_tac ctxt prec splitting taylor i
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3427
      THEN gen_eval_tac (approximation_conv ctxt) ctxt i))
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3428
 *} "real number approximation"
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3429
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3430
ML {*
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3431
  fun calculated_subterms (@{const Trueprop} $ t) = calculated_subterms t
38786
e46e7a9cb622 formerly unnamed infix impliciation now named HOL.implies
haftmann
parents: 38716
diff changeset
  3432
    | calculated_subterms (@{const HOL.implies} $ _ $ t) = calculated_subterms t
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3433
    | calculated_subterms (@{term "op <= :: real \<Rightarrow> real \<Rightarrow> bool"} $ t1 $ t2) = [t1, t2]
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3434
    | calculated_subterms (@{term "op < :: real \<Rightarrow> real \<Rightarrow> bool"} $ t1 $ t2) = [t1, t2]
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3435
    | calculated_subterms (@{term "op : :: real \<Rightarrow> real set \<Rightarrow> bool"} $ t1 $
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3436
                           (@{term "atLeastAtMost :: real \<Rightarrow> real \<Rightarrow> real set"} $ t2 $ t3)) = [t1, t2, t3]
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3437
    | calculated_subterms t = raise TERM ("calculated_subterms", [t])
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3438
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3439
  fun dest_interpret_form (@{const "interpret_form"} $ b $ xs) = (b, xs)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3440
    | dest_interpret_form t = raise TERM ("dest_interpret_form", [t])
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3441
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3442
  fun dest_interpret (@{const "interpret_floatarith"} $ b $ xs) = (b, xs)
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3443
    | dest_interpret t = raise TERM ("dest_interpret", [t])
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3444
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3445
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3446
  fun dest_float (@{const "Float"} $ m $ e) = (snd (HOLogic.dest_number m), snd (HOLogic.dest_number e))
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3447
  fun dest_ivl (Const (@{const_name "Some"}, _) $
37391
476270a6c2dc tuned quotes, antiquotations and whitespace
haftmann
parents: 36985
diff changeset
  3448
                (Const (@{const_name Pair}, _) $ u $ l)) = SOME (dest_float u, dest_float l)
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3449
    | dest_ivl (Const (@{const_name "None"}, _)) = NONE
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3450
    | dest_ivl t = raise TERM ("dest_result", [t])
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3451
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3452
  fun mk_approx' prec t = (@{const "approx'"}
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3453
                         $ HOLogic.mk_number @{typ nat} prec
32650
34bfa2492298 correct variable order in approximate-method
hoelzl
parents: 32642
diff changeset
  3454
                         $ t $ @{term "[] :: (float * float) option list"})
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3455
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3456
  fun mk_approx_form_eval prec t xs = (@{const "approx_form_eval"}
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3457
                         $ HOLogic.mk_number @{typ nat} prec
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3458
                         $ t $ xs)
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3459
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3460
  fun float2_float10 prec round_down (m, e) = (
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3461
    let
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3462
      val (m, e) = (if e < 0 then (m,e) else (m * Integer.pow e 2, 0))
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3463
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3464
      fun frac c p 0 digits cnt = (digits, cnt, 0)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3465
        | frac c 0 r digits cnt = (digits, cnt, r)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3466
        | frac c p r digits cnt = (let
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3467
          val (d, r) = Integer.div_mod (r * 10) (Integer.pow (~e) 2)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3468
        in frac (c orelse d <> 0) (if d <> 0 orelse c then p - 1 else p) r
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3469
                (digits * 10 + d) (cnt + 1)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3470
        end)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3471
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3472
      val sgn = Int.sign m
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3473
      val m = abs m
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3474
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3475
      val round_down = (sgn = 1 andalso round_down) orelse
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3476
                       (sgn = ~1 andalso not round_down)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3477
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3478
      val (x, r) = Integer.div_mod m (Integer.pow (~e) 2)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3479
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3480
      val p = ((if x = 0 then prec else prec - (IntInf.log2 x + 1)) * 3) div 10 + 1
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3481
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3482
      val (digits, e10, r) = if p > 0 then frac (x <> 0) p r 0 0 else (0,0,0)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3483
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3484
      val digits = if round_down orelse r = 0 then digits else digits + 1
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3485
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3486
    in (sgn * (digits + x * (Integer.pow e10 10)), ~e10)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3487
    end)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3488
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3489
  fun mk_result prec (SOME (l, u)) = (let
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3490
      fun mk_float10 rnd x = (let val (m, e) = float2_float10 prec rnd x
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3491
                         in if e = 0 then HOLogic.mk_number @{typ real} m
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3492
                       else if e = 1 then @{term "divide :: real \<Rightarrow> real \<Rightarrow> real"} $
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3493
                                          HOLogic.mk_number @{typ real} m $
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3494
                                          @{term "10"}
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3495
                                     else @{term "divide :: real \<Rightarrow> real \<Rightarrow> real"} $
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3496
                                          HOLogic.mk_number @{typ real} m $
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3497
                                          (@{term "power 10 :: nat \<Rightarrow> real"} $
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3498
                                           HOLogic.mk_number @{typ nat} (~e)) end)
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3499
      in @{term "atLeastAtMost :: real \<Rightarrow> real \<Rightarrow> real set"} $ mk_float10 true l $ mk_float10 false u end)
46545
haftmann
parents: 45481
diff changeset
  3500
    | mk_result _ NONE = @{term "UNIV :: real set"}
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3501
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3502
  fun realify t = let
35845
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35346
diff changeset
  3503
      val t = Logic.varify_global t
46545
haftmann
parents: 45481
diff changeset
  3504
      val m = map (fn (name, _) => (name, @{typ real})) (Term.add_tvars t [])
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3505
      val t = Term.subst_TVars m t
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3506
    in t end
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3507
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3508
  fun converted_result t =
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3509
          prop_of t
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3510
       |> HOLogic.dest_Trueprop
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3511
       |> HOLogic.dest_eq |> snd
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3512
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3513
  fun apply_tactic context term tactic = cterm_of context term
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3514
    |> Goal.init
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3515
    |> SINGLE tactic
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3516
    |> the |> prems_of |> hd
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3517
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3518
  fun prepare_form context term = apply_tactic context term (
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3519
      REPEAT (FIRST' [etac @{thm intervalE}, etac @{thm meta_eqE}, rtac @{thm impI}] 1)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3520
      THEN Subgoal.FOCUS (fn {prems, ...} => reorder_bounds_tac prems 1) @{context} 1
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3521
      THEN DETERM (TRY (filter_prems_tac (K false) 1)))
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3522
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3523
  fun reify_form context term = apply_tactic context term
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3524
     (Reflection.genreify_tac @{context} form_equations NONE 1)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3525
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3526
  fun approx_form prec ctxt t =
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3527
          realify t
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3528
       |> prepare_form (Proof_Context.theory_of ctxt)
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3529
       |> (fn arith_term =>
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 41413
diff changeset
  3530
          reify_form (Proof_Context.theory_of ctxt) arith_term
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3531
       |> HOLogic.dest_Trueprop |> dest_interpret_form
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3532
       |> (fn (data, xs) =>
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3533
          mk_approx_form_eval prec data (HOLogic.mk_list @{typ "(float * float) option"}
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3534
            (map (fn _ => @{term "None :: (float * float) option"}) (HOLogic.dest_list xs)))
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3535
       |> approximate ctxt
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3536
       |> HOLogic.dest_list
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3537
       |> curry ListPair.zip (HOLogic.dest_list xs @ calculated_subterms arith_term)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3538
       |> map (fn (elem, s) => @{term "op : :: real \<Rightarrow> real set \<Rightarrow> bool"} $ elem $ mk_result prec (dest_ivl s))
32920
ccfb774af58c order conjunctions to be printed without parentheses
hoelzl
parents: 32919
diff changeset
  3539
       |> foldr1 HOLogic.mk_conj))
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3540
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3541
  fun approx_arith prec ctxt t = realify t
31811
64dea9a15031 Improved computation of bounds and implemented interval splitting for 'approximation'.
hoelzl
parents: 31810
diff changeset
  3542
       |> Reflection.genreif ctxt form_equations
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3543
       |> prop_of
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3544
       |> HOLogic.dest_Trueprop
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3545
       |> HOLogic.dest_eq |> snd
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3546
       |> dest_interpret |> fst
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3547
       |> mk_approx' prec
36985
41c5d4002f60 spelt out normalizer explicitly -- avoid dynamic reference to code generator configuration; avoid using old Codegen.eval_term
haftmann
parents: 36960
diff changeset
  3548
       |> approximate ctxt
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3549
       |> dest_ivl
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3550
       |> mk_result prec
32919
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3551
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3552
   fun approx prec ctxt t = if type_of t = @{typ prop} then approx_form prec ctxt t
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3553
     else if type_of t = @{typ bool} then approx_form prec ctxt (@{const Trueprop} $ t)
37adfa07b54b approximation now fails earlier when using interval splitting; value [approximate] now supports bounded variables; renamed Var -> Atom for better readability
hoelzl
parents: 32650
diff changeset
  3554
     else approx_arith prec ctxt t
31810
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3555
*}
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3556
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3557
setup {*
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3558
  Value.add_evaluator ("approximate", approx 30)
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3559
*}
a6b800855cdd Added new evaluator "approximate"
hoelzl
parents: 31809
diff changeset
  3560
29805
a5da150bd0ab Add approximation method
hoelzl
parents:
diff changeset
  3561
end
40881
e84f82418e09 Use coercions in Approximation (by Dmitriy Traytel).
hoelzl
parents: 39556
diff changeset
  3562