src/HOL/Library/Float.thy
author wenzelm
Fri, 21 Mar 2025 22:26:18 +0100
changeset 82317 231b6d8231c6
parent 81806 602639414559
permissions -rw-r--r--
more uniform Proof_Display.print_results for theory and proof output --- avoid loss of information seen in src/Doc/JEdit/document/output-and-state.png (the first bad changeset is f8c412a45af8, see also 53b59fa42696);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47615
341fd902ef1c transfer now handles Let
hoelzl
parents: 47608
diff changeset
     1
(*  Title:      HOL/Library/Float.thy
341fd902ef1c transfer now handles Let
hoelzl
parents: 47608
diff changeset
     2
    Author:     Johannes Hölzl, Fabian Immler
341fd902ef1c transfer now handles Let
hoelzl
parents: 47608
diff changeset
     3
    Copyright   2012  TU München
341fd902ef1c transfer now handles Let
hoelzl
parents: 47608
diff changeset
     4
*)
341fd902ef1c transfer now handles Let
hoelzl
parents: 47608
diff changeset
     5
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
     6
section \<open>Floating-Point Numbers\<close>
29988
747f0c519090 add header
huffman
parents: 29804
diff changeset
     7
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 20217
diff changeset
     8
theory Float
63663
28d1deca302e Extracted floorlog and bitlen to separate theory Log_Nat
nipkow
parents: 63599
diff changeset
     9
imports Log_Nat Lattice_Algebras
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 20217
diff changeset
    10
begin
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
    11
49812
e3945ddcb9aa eliminated some remaining uses of typedef with implicit set definition;
wenzelm
parents: 47937
diff changeset
    12
definition "float = {m * 2 powr e | (m :: int) (e :: int). True}"
e3945ddcb9aa eliminated some remaining uses of typedef with implicit set definition;
wenzelm
parents: 47937
diff changeset
    13
49834
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 49812
diff changeset
    14
typedef float = float
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    15
  morphisms real_of_float float_of
49812
e3945ddcb9aa eliminated some remaining uses of typedef with implicit set definition;
wenzelm
parents: 47937
diff changeset
    16
  unfolding float_def by auto
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
    17
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    18
setup_lifting type_definition_float
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
    19
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    20
declare real_of_float [code_unfold]
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    21
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    22
lemmas float_of_inject[simp]
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    23
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    24
declare [[coercion "real_of_float :: float \<Rightarrow> real"]]
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
    25
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    26
lemma real_of_float_eq: "f1 = f2 \<longleftrightarrow> real_of_float f1 = real_of_float f2" for f1 f2 :: float
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    27
  unfolding real_of_float_inject ..
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    28
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    29
declare real_of_float_inverse[simp] float_of_inverse [simp]
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    30
declare real_of_float [simp]
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
    31
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    32
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
    33
subsection \<open>Real operations preserving the representation as floating point number\<close>
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    34
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    35
lemma floatI: "m * 2 powr e = x \<Longrightarrow> x \<in> float" for m e :: int
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    36
  by (auto simp: float_def)
19765
dfe940911617 misc cleanup;
wenzelm
parents: 16890
diff changeset
    37
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    38
lemma zero_float[simp]: "0 \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    39
  by (auto simp: float_def)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    40
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    41
lemma one_float[simp]: "1 \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    42
  by (intro floatI[of 1 0]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    43
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    44
lemma numeral_float[simp]: "numeral i \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    45
  by (intro floatI[of "numeral i" 0]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    46
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    47
lemma neg_numeral_float[simp]: "- numeral i \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    48
  by (intro floatI[of "- numeral i" 0]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    49
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    50
lemma real_of_int_float[simp]: "real_of_int x \<in> float" for x :: int
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    51
  by (intro floatI[of x 0]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    52
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    53
lemma real_of_nat_float[simp]: "real x \<in> float" for x :: nat
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    54
  by (intro floatI[of x 0]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    55
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    56
lemma two_powr_int_float[simp]: "2 powr (real_of_int i) \<in> float" for i :: int
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    57
  by (intro floatI[of 1 i]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    58
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    59
lemma two_powr_nat_float[simp]: "2 powr (real i) \<in> float" for i :: nat
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    60
  by (intro floatI[of 1 i]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    61
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    62
lemma two_powr_minus_int_float[simp]: "2 powr - (real_of_int i) \<in> float" for i :: int
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    63
  by (intro floatI[of 1 "-i"]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    64
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    65
lemma two_powr_minus_nat_float[simp]: "2 powr - (real i) \<in> float" for i :: nat
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    66
  by (intro floatI[of 1 "-i"]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    67
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    68
lemma two_powr_numeral_float[simp]: "2 powr numeral i \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    69
  by (intro floatI[of 1 "numeral i"]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    70
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    71
lemma two_powr_neg_numeral_float[simp]: "2 powr - numeral i \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    72
  by (intro floatI[of 1 "- numeral i"]) simp
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    73
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    74
lemma two_pow_float[simp]: "2 ^ n \<in> float"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
    75
  by (intro floatI[of 1 n]) (simp add: powr_realpow)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
    76
45495
c55a07526dbe cleaned up float theories; removed duplicate definitions and theorems
hoelzl
parents: 44766
diff changeset
    77
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    78
lemma plus_float[simp]: "r \<in> float \<Longrightarrow> p \<in> float \<Longrightarrow> r + p \<in> float"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    79
  unfolding float_def
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
    80
proof (safe, simp)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    81
  have *: "\<exists>(m::int) (e::int). m1 * 2 powr e1 + m2 * 2 powr e2 = m * 2 powr e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    82
    if "e1 \<le> e2" for e1 m1 e2 m2 :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    83
  proof -
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    84
    from that have "m1 * 2 powr e1 + m2 * 2 powr e2 = (m1 + m2 * 2 ^ nat (e2 - e1)) * 2 powr e1"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
    85
      by (simp add: powr_diff field_simps flip: powr_realpow)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    86
    then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    87
      by blast
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    88
  qed
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    89
  fix e1 m1 e2 m2 :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    90
  consider "e2 \<le> e1" | "e1 \<le> e2" by (rule linorder_le_cases)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    91
  then show "\<exists>(m::int) (e::int). m1 * 2 powr e1 + m2 * 2 powr e2 = m * 2 powr e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    92
  proof cases
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    93
    case 1
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    94
    from *[OF this, of m2 m1] show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    95
      by (simp add: ac_simps)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    96
  next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    97
    case 2
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    98
    then show ?thesis by (rule *)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
    99
  qed
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   100
qed
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   101
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   102
lemma uminus_float[simp]: "x \<in> float \<Longrightarrow> -x \<in> float"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   103
  by (simp add: float_def) (metis mult_minus_left of_int_minus)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   104
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   105
lemma times_float[simp]: "x \<in> float \<Longrightarrow> y \<in> float \<Longrightarrow> x * y \<in> float"
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   106
  apply (clarsimp simp: float_def mult_ac)
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   107
  by (metis mult.assoc of_int_mult of_int_add powr_add)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   108
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   109
lemma minus_float[simp]: "x \<in> float \<Longrightarrow> y \<in> float \<Longrightarrow> x - y \<in> float"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53381
diff changeset
   110
  using plus_float [of x "- y"] by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   111
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
   112
lemma abs_float[simp]: "x \<in> float \<Longrightarrow> \<bar>x\<bar> \<in> float"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   113
  by (cases x rule: linorder_cases[of 0]) auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   114
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   115
lemma sgn_of_float[simp]: "x \<in> float \<Longrightarrow> sgn x \<in> float"
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   116
  by (simp add: sgn_real_def)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
   117
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   118
lemma div_power_2_float[simp]: "x \<in> float \<Longrightarrow> x / 2^d \<in> float" 
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   119
  by (simp add: float_def) (metis of_int_diff of_int_of_nat_eq powr_diff powr_realpow zero_less_numeral times_divide_eq_right)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   120
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   121
lemma div_power_2_int_float[simp]: "x \<in> float \<Longrightarrow> x / (2::int)^d \<in> float"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   122
  by simp
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   123
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   124
lemma div_numeral_Bit0_float[simp]:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   125
  assumes "x / numeral n \<in> float"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   126
  shows "x / (numeral (Num.Bit0 n)) \<in> float"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   127
proof -
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   128
  have "(x / numeral n) / 2^1 \<in> float"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   129
    by (intro assms div_power_2_float)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   130
  also have "(x / numeral n) / 2^1 = x / (numeral (Num.Bit0 n))"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   131
    by (induct n) auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   132
  finally show ?thesis .
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   133
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   134
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   135
lemma div_neg_numeral_Bit0_float[simp]:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   136
  assumes "x / numeral n \<in> float"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   137
  shows "x / (- numeral (Num.Bit0 n)) \<in> float"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   138
  using assms by force
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   139
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   140
lemma power_float[simp]:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   141
  assumes "a \<in> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   142
  shows "a ^ b \<in> float"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   143
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   144
  from assms obtain m e :: int where "a = m * 2 powr e"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   145
    by (auto simp: float_def)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   146
  then show ?thesis
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   147
    by (intro floatI[where m="m^b" and e = "e*b"])
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   148
       (auto simp: powr_powr power_mult_distrib simp flip: powr_realpow)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   149
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   150
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   151
lift_definition Float :: "int \<Rightarrow> int \<Rightarrow> float" is "\<lambda>(m::int) (e::int). m * 2 powr e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   152
  by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   153
declare Float.rep_eq[simp]
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   154
62419
c7d6f4dded19 compute_real_of_float has not been used as code equation
immler
parents: 62390
diff changeset
   155
code_datatype Float
c7d6f4dded19 compute_real_of_float has not been used as code equation
immler
parents: 62390
diff changeset
   156
47780
3357688660ff add code equation for real_of_float
hoelzl
parents: 47621
diff changeset
   157
lemma compute_real_of_float[code]:
3357688660ff add code equation for real_of_float
hoelzl
parents: 47621
diff changeset
   158
  "real_of_float (Float m e) = (if e \<ge> 0 then m * 2 ^ nat e else m / 2 ^ (nat (-e)))"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   159
  by (simp add: powr_int)
47780
3357688660ff add code equation for real_of_float
hoelzl
parents: 47621
diff changeset
   160
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   161
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   162
subsection \<open>Arithmetic operations on floating point numbers\<close>
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   163
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   164
instantiation float :: "{ring_1,linorder,linordered_ring,linordered_idom,numeral,equal}"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   165
begin
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   166
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   167
lift_definition zero_float :: float is 0 by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   168
declare zero_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   169
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   170
lift_definition one_float :: float is 1 by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   171
declare one_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   172
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   173
lift_definition plus_float :: "float \<Rightarrow> float \<Rightarrow> float" is "(+)" by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   174
declare plus_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   175
69064
5840724b1d71 Prefix form of infix with * on either side no longer needs special treatment
nipkow
parents: 68406
diff changeset
   176
lift_definition times_float :: "float \<Rightarrow> float \<Rightarrow> float" is "(*)" by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   177
declare times_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   178
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   179
lift_definition minus_float :: "float \<Rightarrow> float \<Rightarrow> float" is "(-)" by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   180
declare minus_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   181
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   182
lift_definition uminus_float :: "float \<Rightarrow> float" is "uminus" by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   183
declare uminus_float.rep_eq[simp]
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   184
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   185
lift_definition abs_float :: "float \<Rightarrow> float" is abs by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   186
declare abs_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   187
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   188
lift_definition sgn_float :: "float \<Rightarrow> float" is sgn by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   189
declare sgn_float.rep_eq[simp]
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   190
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   191
lift_definition equal_float :: "float \<Rightarrow> float \<Rightarrow> bool" is "(=) :: real \<Rightarrow> real \<Rightarrow> bool" .
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   192
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   193
lift_definition less_eq_float :: "float \<Rightarrow> float \<Rightarrow> bool" is "(\<le>)" .
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   194
declare less_eq_float.rep_eq[simp]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   195
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   196
lift_definition less_float :: "float \<Rightarrow> float \<Rightarrow> bool" is "(<)" .
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   197
declare less_float.rep_eq[simp]
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   198
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   199
instance
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   200
  by standard (transfer; fastforce simp add: field_simps intro: mult_left_mono mult_right_mono)+
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   201
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   202
end
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   203
61639
6ef461bee3fa new conversion theorems for int, nat to float
paulson <lp15@cam.ac.uk>
parents: 61609
diff changeset
   204
lemma real_of_float [simp]: "real_of_float (of_nat n) = of_nat n"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   205
  by (induct n) simp_all
61639
6ef461bee3fa new conversion theorems for int, nat to float
paulson <lp15@cam.ac.uk>
parents: 61609
diff changeset
   206
6ef461bee3fa new conversion theorems for int, nat to float
paulson <lp15@cam.ac.uk>
parents: 61609
diff changeset
   207
lemma real_of_float_of_int_eq [simp]: "real_of_float (of_int z) = of_int z"
6ef461bee3fa new conversion theorems for int, nat to float
paulson <lp15@cam.ac.uk>
parents: 61609
diff changeset
   208
  by (cases z rule: int_diff_cases) (simp_all add: of_rat_diff)
6ef461bee3fa new conversion theorems for int, nat to float
paulson <lp15@cam.ac.uk>
parents: 61609
diff changeset
   209
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   210
lemma Float_0_eq_0[simp]: "Float 0 e = 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   211
  by transfer simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   212
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   213
lemma real_of_float_power[simp]: "real_of_float (f^n) = real_of_float f^n" for f :: float
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   214
  by (induct n) simp_all
45495
c55a07526dbe cleaned up float theories; removed duplicate definitions and theorems
hoelzl
parents: 44766
diff changeset
   215
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   216
lemma real_of_float_min: "real_of_float (min x y) = min (real_of_float x) (real_of_float y)"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   217
  and real_of_float_max: "real_of_float (max x y) = max (real_of_float x) (real_of_float y)"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   218
  for x y :: float
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   219
  by (simp_all add: min_def max_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   220
53215
5e47c31c6f7c renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents: 51542
diff changeset
   221
instance float :: unbounded_dense_linorder
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   222
proof
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   223
  fix a b :: float
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   224
  show "\<exists>c. a < c"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   225
    by (metis Float.real_of_float less_float.rep_eq reals_Archimedean2)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   226
  show "\<exists>c. c < a"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   227
    by (metis add_0 add_strict_right_mono neg_less_0_iff_less zero_less_one)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   228
  show "\<exists>c. a < c \<and> c < b" if "a < b"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   229
    apply (rule exI[of _ "(a + b) * Float 1 (- 1)"])
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   230
    using that
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   231
    apply transfer
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
   232
    apply (simp add: powr_minus)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   233
    done
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   234
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   235
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   236
instantiation float :: lattice_ab_group_add
46573
8c4c5c8dcf7a misc tuning;
wenzelm
parents: 46028
diff changeset
   237
begin
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   238
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   239
definition inf_float :: "float \<Rightarrow> float \<Rightarrow> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   240
  where "inf_float a b = min a b"
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   241
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   242
definition sup_float :: "float \<Rightarrow> float \<Rightarrow> float"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   243
  where "sup_float a b = max a b"
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   244
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   245
instance
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   246
  by standard (transfer; simp add: inf_float_def sup_float_def real_of_float_min real_of_float_max)+
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60500
diff changeset
   247
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   248
end
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   249
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   250
lemma float_numeral[simp]: "real_of_float (numeral x :: float) = numeral x"
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   251
  by (metis of_int_numeral real_of_float_of_int_eq)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   252
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
   253
lemma transfer_numeral [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   254
  "rel_fun (=) pcr_float (numeral :: _ \<Rightarrow> real) (numeral :: _ \<Rightarrow> float)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   255
  by (simp add: rel_fun_def float.pcr_cr_eq cr_float_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   256
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   257
lemma float_neg_numeral[simp]: "real_of_float (- numeral x :: float) = - numeral x"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
   258
  by simp
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46670
diff changeset
   259
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
   260
lemma transfer_neg_numeral [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   261
  "rel_fun (=) pcr_float (- numeral :: _ \<Rightarrow> real) (- numeral :: _ \<Rightarrow> float)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   262
  by (simp add: rel_fun_def float.pcr_cr_eq cr_float_def)
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   263
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   264
lemma float_of_numeral: "numeral k = float_of (numeral k)"
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   265
  and float_of_neg_numeral: "- numeral k = float_of (- numeral k)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   266
  unfolding real_of_float_eq by simp_all
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46670
diff changeset
   267
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   268
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   269
subsection \<open>Quickcheck\<close>
58987
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   270
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   271
instantiation float :: exhaustive
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   272
begin
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   273
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   274
definition exhaustive_float where
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   275
  "exhaustive_float f d =
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   276
    Quickcheck_Exhaustive.exhaustive (\<lambda>x. Quickcheck_Exhaustive.exhaustive (\<lambda>y. f (Float x y)) d) d"
58987
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   277
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   278
instance ..
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   279
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   280
end
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   281
72607
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   282
context
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   283
  includes term_syntax
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   284
begin
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   285
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   286
definition [code_unfold]:
58987
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   287
  "valtermify_float x y = Code_Evaluation.valtermify Float {\<cdot>} x {\<cdot>} y"
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   288
72607
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   289
end
feebdaa346e5 bundles for reflected term syntax
haftmann
parents: 71036
diff changeset
   290
58987
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   291
instantiation float :: full_exhaustive
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   292
begin
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   293
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   294
definition
58987
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   295
  "full_exhaustive_float f d =
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   296
    Quickcheck_Exhaustive.full_exhaustive
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   297
      (\<lambda>x. Quickcheck_Exhaustive.full_exhaustive (\<lambda>y. f (valtermify_float x y)) d) d"
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   298
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   299
instance ..
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   300
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   301
end
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   302
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   303
instantiation float :: random
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   304
begin
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   305
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   306
definition "Quickcheck_Random.random i =
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   307
  scomp (Quickcheck_Random.random (2 ^ nat_of_natural i))
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   308
    (\<lambda>man. scomp (Quickcheck_Random.random i) (\<lambda>exp. Pair (valtermify_float man exp)))"
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   309
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   310
instance ..
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   311
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   312
end
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   313
119680ebf37c quickcheck setup for float, inspired by rat::{exhaustive,full_exhaustive,random}
immler
parents: 58985
diff changeset
   314
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   315
subsection \<open>Represent floats as unique mantissa and exponent\<close>
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46670
diff changeset
   316
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   317
lemma int_induct_abs[case_names less]:
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   318
  fixes j :: int
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   319
  assumes H: "\<And>n. (\<And>i. \<bar>i\<bar> < \<bar>n\<bar> \<Longrightarrow> P i) \<Longrightarrow> P n"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   320
  shows "P j"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   321
proof (induct "nat \<bar>j\<bar>" arbitrary: j rule: less_induct)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   322
  case less
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   323
  show ?case by (rule H[OF less]) simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   324
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   325
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   326
lemma int_cancel_factors:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   327
  fixes n :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   328
  assumes "1 < r"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   329
  shows "n = 0 \<or> (\<exists>k i. n = k * r ^ i \<and> \<not> r dvd k)"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   330
proof (induct n rule: int_induct_abs)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   331
  case (less n)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   332
  have "\<exists>k i. n = k * r ^ Suc i \<and> \<not> r dvd k" if "n \<noteq> 0" "n = m * r" for m
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   333
  proof -
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   334
    from that have "\<bar>m \<bar> < \<bar>n\<bar>"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   335
      using \<open>1 < r\<close> by (simp add: abs_mult)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   336
    from less[OF this] that show ?thesis by auto
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   337
  qed
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   338
  then show ?case
59554
4044f53326c9 inlined rules to free user-space from technical names
haftmann
parents: 59487
diff changeset
   339
    by (metis dvd_def monoid_mult_class.mult.right_neutral mult.commute power_0)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   340
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   341
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   342
lemma mult_powr_eq_mult_powr_iff_asym:
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   343
  fixes m1 m2 e1 e2 :: int
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   344
  assumes m1: "\<not> 2 dvd m1"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   345
    and "e1 \<le> e2"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   346
  shows "m1 * 2 powr e1 = m2 * 2 powr e2 \<longleftrightarrow> m1 = m2 \<and> e1 = e2"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   347
  (is "?lhs \<longleftrightarrow> ?rhs")
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   348
proof
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   349
  show ?rhs if eq: ?lhs
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   350
  proof -
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   351
    have "m1 \<noteq> 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   352
      using m1 unfolding dvd_def by auto
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   353
    from \<open>e1 \<le> e2\<close> eq have "m1 = m2 * 2 powr nat (e2 - e1)"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   354
      by (simp add: powr_diff field_simps)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   355
    also have "\<dots> = m2 * 2^nat (e2 - e1)"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   356
      by (simp add: powr_realpow)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   357
    finally have m1_eq: "m1 = m2 * 2^nat (e2 - e1)"
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61639
diff changeset
   358
      by linarith
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   359
    with m1 have "m1 = m2"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   360
      by (cases "nat (e2 - e1)") (auto simp add: dvd_def)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   361
    then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   362
      using eq \<open>m1 \<noteq> 0\<close> by (simp add: powr_inj)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   363
  qed
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   364
  show ?lhs if ?rhs
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   365
    using that by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   366
qed
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   367
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   368
lemma mult_powr_eq_mult_powr_iff:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   369
  "\<not> 2 dvd m1 \<Longrightarrow> \<not> 2 dvd m2 \<Longrightarrow> m1 * 2 powr e1 = m2 * 2 powr e2 \<longleftrightarrow> m1 = m2 \<and> e1 = e2"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   370
  for m1 m2 e1 e2 :: int
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   371
  using mult_powr_eq_mult_powr_iff_asym[of m1 e1 e2 m2]
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   372
  using mult_powr_eq_mult_powr_iff_asym[of m2 e2 e1 m1]
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   373
  by (cases e1 e2 rule: linorder_le_cases) auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   374
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   375
lemma floatE_normed:
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   376
  assumes x: "x \<in> float"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   377
  obtains (zero) "x = 0"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   378
   | (powr) m e :: int where "x = m * 2 powr e" "\<not> 2 dvd m" "x \<noteq> 0"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   379
proof -
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   380
  have "\<exists>(m::int) (e::int). x = m * 2 powr e \<and> \<not> (2::int) dvd m" if "x \<noteq> 0"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   381
  proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   382
    from x obtain m e :: int where x: "x = m * 2 powr e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   383
      by (auto simp: float_def)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   384
    with \<open>x \<noteq> 0\<close> int_cancel_factors[of 2 m] obtain k i where "m = k * 2 ^ i" "\<not> 2 dvd k"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   385
      by auto
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   386
    with \<open>\<not> 2 dvd k\<close> x have "x = real_of_int k * 2 powr real_of_int (e + int i) \<and> odd k"
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   387
      by (simp add: powr_add powr_realpow)
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   388
    then show ?thesis
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   389
      by blast
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   390
  qed
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   391
  with that show thesis by blast
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   392
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   393
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   394
lemma float_normed_cases:
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   395
  fixes f :: float
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   396
  obtains (zero) "f = 0"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   397
   | (powr) m e :: int where "real_of_float f = m * 2 powr e" "\<not> 2 dvd m" "f \<noteq> 0"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   398
proof (atomize_elim, induct f)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   399
  case (float_of y)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   400
  then show ?case
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   401
    by (cases rule: floatE_normed) (auto simp: zero_float_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   402
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   403
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   404
definition mantissa :: "float \<Rightarrow> int"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   405
  where "mantissa f =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   406
    fst (SOME p::int \<times> int. (f = 0 \<and> fst p = 0 \<and> snd p = 0) \<or>
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   407
      (f \<noteq> 0 \<and> real_of_float f = real_of_int (fst p) * 2 powr real_of_int (snd p) \<and> \<not> 2 dvd fst p))"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   408
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   409
definition exponent :: "float \<Rightarrow> int"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   410
  where "exponent f =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   411
    snd (SOME p::int \<times> int. (f = 0 \<and> fst p = 0 \<and> snd p = 0) \<or>
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   412
      (f \<noteq> 0 \<and> real_of_float f = real_of_int (fst p) * 2 powr real_of_int (snd p) \<and> \<not> 2 dvd fst p))"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   413
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   414
lemma exponent_0[simp]: "exponent 0 = 0" (is ?E)
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   415
  and mantissa_0[simp]: "mantissa 0 = 0" (is ?M)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   416
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   417
  have "\<And>p::int \<times> int. fst p = 0 \<and> snd p = 0 \<longleftrightarrow> p = (0, 0)"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   418
    by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   419
  then show ?E ?M
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   420
    by (auto simp add: mantissa_def exponent_def zero_float_def)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   421
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   422
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   423
lemma mantissa_exponent: "real_of_float f = mantissa f * 2 powr exponent f" (is ?E)
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   424
  and mantissa_not_dvd: "f \<noteq> 0 \<Longrightarrow> \<not> 2 dvd mantissa f" (is "_ \<Longrightarrow> ?D")
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   425
proof cases
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   426
  assume [simp]: "f \<noteq> 0"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   427
  have "f = mantissa f * 2 powr exponent f \<and> \<not> 2 dvd mantissa f"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   428
  proof (cases f rule: float_normed_cases)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   429
    case zero
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   430
    then show ?thesis by simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   431
  next
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   432
    case (powr m e)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   433
    then have "\<exists>p::int \<times> int. (f = 0 \<and> fst p = 0 \<and> snd p = 0) \<or>
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   434
      (f \<noteq> 0 \<and> real_of_float f = real_of_int (fst p) * 2 powr real_of_int (snd p) \<and> \<not> 2 dvd fst p)"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   435
      by auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   436
    then show ?thesis
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   437
      unfolding exponent_def mantissa_def
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   438
      by (rule someI2_ex) simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   439
  qed
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   440
  then show ?E ?D by auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   441
qed simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   442
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   443
lemma mantissa_noteq_0: "f \<noteq> 0 \<Longrightarrow> mantissa f \<noteq> 0"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   444
  using mantissa_not_dvd[of f] by auto
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   445
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   446
lemma mantissa_eq_zero_iff: "mantissa x = 0 \<longleftrightarrow> x = 0"
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   447
  (is "?lhs \<longleftrightarrow> ?rhs")
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   448
proof
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   449
  show ?rhs if ?lhs
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   450
  proof -
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   451
    from that have z: "0 = real_of_float x"
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   452
      using mantissa_exponent by simp
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   453
    show ?thesis
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   454
      by (simp add: zero_float_def z)
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   455
  qed
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   456
  show ?lhs if ?rhs
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   457
    using that by simp
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   458
qed
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   459
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   460
lemma mantissa_pos_iff: "0 < mantissa x \<longleftrightarrow> 0 < x"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70355
diff changeset
   461
  by (auto simp: mantissa_exponent algebra_split_simps)
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   462
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   463
lemma mantissa_nonneg_iff: "0 \<le> mantissa x \<longleftrightarrow> 0 \<le> x"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70355
diff changeset
   464
  by (auto simp: mantissa_exponent algebra_split_simps)
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   465
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   466
lemma mantissa_neg_iff: "0 > mantissa x \<longleftrightarrow> 0 > x"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70355
diff changeset
   467
  by (auto simp: mantissa_exponent algebra_split_simps)
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   468
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
   469
lemma
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   470
  fixes m e :: int
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   471
  defines "f \<equiv> float_of (m * 2 powr e)"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   472
  assumes dvd: "\<not> 2 dvd m"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   473
  shows mantissa_float: "mantissa f = m" (is "?M")
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   474
    and exponent_float: "m \<noteq> 0 \<Longrightarrow> exponent f = e" (is "_ \<Longrightarrow> ?E")
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   475
proof cases
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   476
  assume "m = 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   477
  with dvd show "mantissa f = m" by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   478
next
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   479
  assume "m \<noteq> 0"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   480
  then have f_not_0: "f \<noteq> 0" by (simp add: f_def zero_float_def)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   481
  from mantissa_exponent[of f] have "m * 2 powr e = mantissa f * 2 powr exponent f"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   482
    by (auto simp add: f_def)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   483
  then show ?M ?E
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   484
    using mantissa_not_dvd[OF f_not_0] dvd
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   485
    by (auto simp: mult_powr_eq_mult_powr_iff)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   486
qed
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   487
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   488
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   489
subsection \<open>Compute arithmetic operations\<close>
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   490
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   491
lemma Float_mantissa_exponent: "Float (mantissa f) (exponent f) = f"
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   492
  unfolding real_of_float_eq mantissa_exponent[of f] by simp
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   493
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   494
lemma Float_cases [cases type: float]:
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   495
  fixes f :: float
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   496
  obtains (Float) m e :: int where "f = Float m e"
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   497
  using Float_mantissa_exponent[symmetric]
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   498
  by (atomize_elim) auto
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   499
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   500
lemma denormalize_shift:
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   501
  assumes f_def: "f = Float m e"
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   502
    and not_0: "f \<noteq> 0"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   503
  obtains i where "m = mantissa f * 2 ^ i" "e = exponent f - i"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   504
proof
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   505
  from mantissa_exponent[of f] f_def
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   506
  have "m * 2 powr e = mantissa f * 2 powr exponent f"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   507
    by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   508
  then have eq: "m = mantissa f * 2 powr (exponent f - e)"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   509
    by (simp add: powr_diff field_simps)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   510
  moreover
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   511
  have "e \<le> exponent f"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   512
  proof (rule ccontr)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   513
    assume "\<not> e \<le> exponent f"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   514
    then have pos: "exponent f < e" by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   515
    then have "2 powr (exponent f - e) = 2 powr - real_of_int (e - exponent f)"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   516
      by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   517
    also have "\<dots> = 1 / 2^nat (e - exponent f)"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   518
      using pos by (simp flip: powr_realpow add: powr_diff)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   519
    finally have "m * 2^nat (e - exponent f) = real_of_int (mantissa f)"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   520
      using eq by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   521
    then have "mantissa f = m * 2^nat (e - exponent f)"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   522
      by linarith
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   523
    with \<open>exponent f < e\<close> have "2 dvd mantissa f"
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   524
      by (force intro: dvdI[where k="m * 2^(nat (e-exponent f)) div 2"])
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   525
    then show False using mantissa_not_dvd[OF not_0] by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   526
  qed
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   527
  ultimately have "real_of_int m = mantissa f * 2^nat (exponent f - e)"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   528
    by (simp flip: powr_realpow)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   529
  with \<open>e \<le> exponent f\<close>
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   530
  show "m = mantissa f * 2 ^ nat (exponent f - e)"
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61639
diff changeset
   531
    by linarith
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61639
diff changeset
   532
  show "e = exponent f - nat (exponent f - e)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61762
diff changeset
   533
    using \<open>e \<le> exponent f\<close> by auto
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   534
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   535
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   536
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   537
begin
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   538
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   539
qualified lemma compute_float_zero[code_unfold, code]: "0 = Float 0 0"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   540
  by transfer simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   541
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   542
qualified lemma compute_float_one[code_unfold, code]: "1 = Float 1 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   543
  by transfer simp
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   544
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   545
lift_definition normfloat :: "float \<Rightarrow> float" is "\<lambda>x. x" .
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   546
lemma normloat_id[simp]: "normfloat x = x" by transfer rule
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   547
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   548
qualified lemma compute_normfloat[code]:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   549
  "normfloat (Float m e) =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   550
    (if m mod 2 = 0 \<and> m \<noteq> 0 then normfloat (Float (m div 2) (e + 1))
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   551
     else if m = 0 then 0 else Float m e)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   552
  by transfer (auto simp add: powr_add zmod_eq_0_iff)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   553
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   554
qualified lemma compute_float_numeral[code_abbrev]: "Float (numeral k) 0 = numeral k"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   555
  by transfer simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   556
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   557
qualified lemma compute_float_neg_numeral[code_abbrev]: "Float (- numeral k) 0 = - numeral k"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   558
  by transfer simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   559
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   560
qualified lemma compute_float_uminus[code]: "- Float m1 e1 = Float (- m1) e1"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   561
  by transfer simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   562
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   563
qualified lemma compute_float_times[code]: "Float m1 e1 * Float m2 e2 = Float (m1 * m2) (e1 + e2)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   564
  by transfer (simp add: field_simps powr_add)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   565
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   566
qualified lemma compute_float_plus[code]:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   567
  "Float m1 e1 + Float m2 e2 =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   568
    (if m1 = 0 then Float m2 e2
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   569
     else if m2 = 0 then Float m1 e1
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   570
     else if e1 \<le> e2 then Float (m1 + m2 * 2^nat (e2 - e1)) e1
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   571
     else Float (m2 + m1 * 2^nat (e1 - e2)) e2)"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   572
  by transfer (simp add: field_simps powr_realpow[symmetric] powr_diff)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   573
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   574
qualified lemma compute_float_minus[code]: "f - g = f + (-g)" for f g :: float
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   575
  by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   576
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   577
qualified lemma compute_float_sgn[code]:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   578
  "sgn (Float m1 e1) = (if 0 < m1 then 1 else if m1 < 0 then -1 else 0)"
64240
eabf80376aab more standardized names
haftmann
parents: 63664
diff changeset
   579
  by transfer (simp add: sgn_mult)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   580
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   581
lift_definition is_float_pos :: "float \<Rightarrow> bool" is "(<) 0 :: real \<Rightarrow> bool" .
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   582
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   583
qualified lemma compute_is_float_pos[code]: "is_float_pos (Float m e) \<longleftrightarrow> 0 < m"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   584
  by transfer (auto simp add: zero_less_mult_iff not_le[symmetric, of _ 0])
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   585
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   586
lift_definition is_float_nonneg :: "float \<Rightarrow> bool" is "(\<le>) 0 :: real \<Rightarrow> bool" .
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   587
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   588
qualified lemma compute_is_float_nonneg[code]: "is_float_nonneg (Float m e) \<longleftrightarrow> 0 \<le> m"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   589
  by transfer (auto simp add: zero_le_mult_iff not_less[symmetric, of _ 0])
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   590
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67118
diff changeset
   591
lift_definition is_float_zero :: "float \<Rightarrow> bool"  is "(=) 0 :: real \<Rightarrow> bool" .
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   592
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   593
qualified lemma compute_is_float_zero[code]: "is_float_zero (Float m e) \<longleftrightarrow> 0 = m"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   594
  by transfer (auto simp add: is_float_zero_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   595
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
   596
qualified lemma compute_float_abs[code]: "\<bar>Float m e\<bar> = Float \<bar>m\<bar> e"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   597
  by transfer (simp add: abs_mult)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   598
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   599
qualified lemma compute_float_eq[code]: "equal_class.equal f g = is_float_zero (f - g)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   600
  by transfer simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   601
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   602
end
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   603
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   604
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69064
diff changeset
   605
subsection \<open>Lemmas for types \<^typ>\<open>real\<close>, \<^typ>\<open>nat\<close>, \<^typ>\<open>int\<close>\<close>
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   606
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   607
lemmas real_of_ints =
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   608
  of_int_add
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   609
  of_int_minus
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   610
  of_int_diff
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   611
  of_int_mult
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   612
  of_int_power
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   613
  of_int_numeral of_int_neg_numeral
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   614
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   615
lemmas int_of_reals = real_of_ints[symmetric]
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   616
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   617
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   618
subsection \<open>Rounding Real Numbers\<close>
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   619
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   620
definition round_down :: "int \<Rightarrow> real \<Rightarrow> real"
61942
f02b26f7d39d prefer symbols for "floor", "ceiling";
wenzelm
parents: 61799
diff changeset
   621
  where "round_down prec x = \<lfloor>x * 2 powr prec\<rfloor> * 2 powr -prec"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   622
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   623
definition round_up :: "int \<Rightarrow> real \<Rightarrow> real"
61942
f02b26f7d39d prefer symbols for "floor", "ceiling";
wenzelm
parents: 61799
diff changeset
   624
  where "round_up prec x = \<lceil>x * 2 powr prec\<rceil> * 2 powr -prec"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   625
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   626
lemma round_down_float[simp]: "round_down prec x \<in> float"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   627
  unfolding round_down_def
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   628
  by (auto intro!: times_float simp flip: of_int_minus)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   629
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   630
lemma round_up_float[simp]: "round_up prec x \<in> float"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   631
  unfolding round_up_def
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   632
  by (auto intro!: times_float simp flip: of_int_minus)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   633
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   634
lemma round_up: "x \<le> round_up prec x"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   635
  by (simp add: powr_minus_divide le_divide_eq round_up_def ceiling_correct)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   636
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   637
lemma round_down: "round_down prec x \<le> x"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   638
  by (simp add: powr_minus_divide divide_le_eq round_down_def)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   639
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   640
lemma round_up_0[simp]: "round_up p 0 = 0"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   641
  unfolding round_up_def by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   642
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   643
lemma round_down_0[simp]: "round_down p 0 = 0"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   644
  unfolding round_down_def by simp
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   645
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   646
lemma round_up_diff_round_down: "round_up prec x - round_down prec x \<le> 2 powr -prec"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   647
proof -
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   648
  have "round_up prec x - round_down prec x = (\<lceil>x * 2 powr prec\<rceil> - \<lfloor>x * 2 powr prec\<rfloor>) * 2 powr -prec"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   649
    by (simp add: round_up_def round_down_def field_simps)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   650
  also have "\<dots> \<le> 1 * 2 powr -prec"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   651
    by (rule mult_mono)
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   652
      (auto simp flip: of_int_diff simp: ceiling_diff_floor_le_1)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   653
  finally show ?thesis by simp
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   654
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   655
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   656
lemma round_down_shift: "round_down p (x * 2 powr k) = 2 powr k * round_down (p + k) x"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   657
  unfolding round_down_def
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   658
  by (simp add: powr_add powr_mult field_simps powr_diff)
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   659
    (simp flip: powr_add)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   660
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   661
lemma round_up_shift: "round_up p (x * 2 powr k) = 2 powr k * round_up (p + k) x"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   662
  unfolding round_up_def
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   663
  by (simp add: powr_add powr_mult field_simps powr_diff)
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   664
    (simp flip: powr_add)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   665
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   666
lemma round_up_uminus_eq: "round_up p (-x) = - round_down p x"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   667
  and round_down_uminus_eq: "round_down p (-x) = - round_up p x"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   668
  by (auto simp: round_up_def round_down_def ceiling_def)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   669
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   670
lemma round_up_mono: "x \<le> y \<Longrightarrow> round_up p x \<le> round_up p y"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   671
  by (auto intro!: ceiling_mono simp: round_up_def)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   672
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   673
lemma round_up_le1:
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   674
  assumes "x \<le> 1" "prec \<ge> 0"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   675
  shows "round_up prec x \<le> 1"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   676
proof -
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   677
  have "real_of_int \<lceil>x * 2 powr prec\<rceil> \<le> real_of_int \<lceil>2 powr real_of_int prec\<rceil>"
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   678
    using assms by (auto intro!: ceiling_mono)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   679
  also have "\<dots> = 2 powr prec" using assms by (auto simp: powr_int intro!: exI[where x="2^nat prec"])
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   680
  finally show ?thesis
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   681
    by (simp add: round_up_def) (simp add: powr_minus inverse_eq_divide)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   682
qed
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   683
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   684
lemma round_up_less1:
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   685
  assumes "x < 1 / 2" "p > 0"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   686
  shows "round_up p x < 1"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   687
proof -
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   688
  have "x * 2 powr p < 1 / 2 * 2 powr p"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   689
    using assms by simp
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   690
  also have "\<dots> \<le> 2 powr p - 1" using \<open>p > 0\<close>
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
   691
    by (auto simp: powr_diff powr_int field_simps self_le_power)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   692
  finally show ?thesis using \<open>p > 0\<close>
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   693
    by (simp add: round_up_def field_simps powr_minus powr_int ceiling_less_iff)
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   694
qed
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   695
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   696
lemma round_down_ge1:
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   697
  assumes x: "x \<ge> 1"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   698
  assumes prec: "p \<ge> - log 2 x"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   699
  shows "1 \<le> round_down p x"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   700
proof cases
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   701
  assume nonneg: "0 \<le> p"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   702
  have "2 powr p = real_of_int \<lfloor>2 powr real_of_int p\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   703
    using nonneg by (auto simp: powr_int)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   704
  also have "\<dots> \<le> real_of_int \<lfloor>x * 2 powr p\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   705
    using assms by (auto intro!: floor_mono)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   706
  finally show ?thesis
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   707
    by (simp add: round_down_def) (simp add: powr_minus inverse_eq_divide)
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   708
next
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   709
  assume neg: "\<not> 0 \<le> p"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   710
  have "x = 2 powr (log 2 x)"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   711
    using x by simp
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   712
  also have "2 powr (log 2 x) \<ge> 2 powr - p"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   713
    using prec by auto
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   714
  finally have x_le: "x \<ge> 2 powr -p" .
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   715
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   716
  from neg have "2 powr real_of_int p \<le> 2 powr 0"
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   717
    by (intro powr_mono) auto
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59984
diff changeset
   718
  also have "\<dots> \<le> \<lfloor>2 powr 0::real\<rfloor>" by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   719
  also have "\<dots> \<le> \<lfloor>x * 2 powr (real_of_int p)\<rfloor>"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   720
    unfolding of_int_le_iff
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   721
    using x x_le by (intro floor_mono) (simp add: powr_minus_divide field_simps)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   722
  finally show ?thesis
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   723
    using prec x
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   724
    by (simp add: round_down_def powr_minus_divide pos_le_divide_eq)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   725
qed
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   726
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   727
lemma round_up_le0: "x \<le> 0 \<Longrightarrow> round_up p x \<le> 0"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   728
  unfolding round_up_def
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   729
  by (auto simp: field_simps mult_le_0_iff zero_le_mult_iff)
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   730
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   731
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   732
subsection \<open>Rounding Floats\<close>
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   733
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   734
definition div_twopow :: "int \<Rightarrow> nat \<Rightarrow> int"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   735
  where [simp]: "div_twopow x n = x div (2 ^ n)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   736
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   737
definition mod_twopow :: "int \<Rightarrow> nat \<Rightarrow> int"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   738
  where [simp]: "mod_twopow x n = x mod (2 ^ n)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   739
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   740
lemma compute_div_twopow[code]:
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   741
  "div_twopow x n = (if x = 0 \<or> x = -1 \<or> n = 0 then x else div_twopow (x div 2) (n - 1))"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   742
  by (cases n) (auto simp: zdiv_zmult2_eq div_eq_minus1)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   743
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   744
lemma compute_mod_twopow[code]:
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   745
  "mod_twopow x n = (if n = 0 then 0 else x mod 2 + 2 * mod_twopow (x div 2) (n - 1))"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   746
  by (cases n) (auto simp: zmod_zmult2_eq)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   747
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   748
lift_definition float_up :: "int \<Rightarrow> float \<Rightarrow> float" is round_up by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   749
declare float_up.rep_eq[simp]
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   750
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   751
lemma round_up_correct: "round_up e f - f \<in> {0..2 powr -e}"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   752
  unfolding atLeastAtMost_iff
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   753
proof
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   754
  have "round_up e f - f \<le> round_up e f - round_down e f"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   755
    using round_down by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   756
  also have "\<dots> \<le> 2 powr -e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   757
    using round_up_diff_round_down by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   758
  finally show "round_up e f - f \<le> 2 powr - (real_of_int e)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   759
    by simp
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   760
qed (simp add: algebra_simps round_up)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   761
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   762
lemma float_up_correct: "real_of_float (float_up e f) - real_of_float f \<in> {0..2 powr -e}"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   763
  by transfer (rule round_up_correct)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   764
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   765
lift_definition float_down :: "int \<Rightarrow> float \<Rightarrow> float" is round_down by simp
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
   766
declare float_down.rep_eq[simp]
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
   767
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   768
lemma round_down_correct: "f - (round_down e f) \<in> {0..2 powr -e}"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   769
  unfolding atLeastAtMost_iff
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   770
proof
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   771
  have "f - round_down e f \<le> round_up e f - round_down e f"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   772
    using round_up by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   773
  also have "\<dots> \<le> 2 powr -e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   774
    using round_up_diff_round_down by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   775
  finally show "f - round_down e f \<le> 2 powr - (real_of_int e)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   776
    by simp
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   777
qed (simp add: algebra_simps round_down)
24301
6c7f226b24c3 changed floatarith lemmas
obua
parents: 24124
diff changeset
   778
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   779
lemma float_down_correct: "real_of_float f - real_of_float (float_down e f) \<in> {0..2 powr -e}"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   780
  by transfer (rule round_down_correct)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   781
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   782
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   783
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   784
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   785
qualified lemma compute_float_down[code]:
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   786
  "float_down p (Float m e) =
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   787
    (if p + e < 0 then Float (div_twopow m (nat (-(p + e)))) (-p) else Float m e)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   788
proof (cases "p + e < 0")
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   789
  case True
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   790
  then have "real_of_int ((2::int) ^ nat (-(p + e))) = 2 powr (-(p + e))"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   791
    using powr_realpow[of 2 "nat (-(p + e))"] by simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   792
  also have "\<dots> = 1 / 2 powr p / 2 powr e"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   793
    unfolding powr_minus_divide of_int_minus by (simp add: powr_add)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   794
  finally show ?thesis
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   795
    using \<open>p + e < 0\<close>
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   796
    apply transfer
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
   797
    apply (simp add: round_down_def field_simps flip: floor_divide_of_int_eq powr_add)
73932
fd21b4a93043 added opaque_combs and renamed hide_lams to opaque_lifting
desharna
parents: 73655
diff changeset
   798
    apply (metis (no_types, opaque_lifting) Float.rep_eq
70355
haftmann
parents: 70347
diff changeset
   799
      add.inverse_inverse compute_real_of_float diff_minus_eq_add
haftmann
parents: 70347
diff changeset
   800
      floor_divide_of_int_eq int_of_reals(1) linorder_not_le
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
   801
      minus_add_distrib of_int_eq_numeral_power_cancel_iff)
70355
haftmann
parents: 70347
diff changeset
   802
    done
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   803
next
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   804
  case False
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   805
  then have r: "real_of_int e + real_of_int p = real (nat (e + p))"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   806
    by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   807
  have r: "\<lfloor>(m * 2 powr e) * 2 powr real_of_int p\<rfloor> = (m * 2 powr e) * 2 powr real_of_int p"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
   808
    by (auto intro: exI[where x="m*2^nat (e+p)"]
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   809
        simp add: ac_simps powr_add[symmetric] r powr_realpow)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   810
  with \<open>\<not> p + e < 0\<close> show ?thesis
57862
8f074e6e22fc tuned proofs;
wenzelm
parents: 57512
diff changeset
   811
    by transfer (auto simp add: round_down_def field_simps powr_add powr_minus)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   812
qed
24301
6c7f226b24c3 changed floatarith lemmas
obua
parents: 24124
diff changeset
   813
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   814
lemma abs_round_down_le: "\<bar>f - (round_down e f)\<bar> \<le> 2 powr -e"
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   815
  using round_down_correct[of f e] by simp
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   816
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   817
lemma abs_round_up_le: "\<bar>f - (round_up e f)\<bar> \<le> 2 powr -e"
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   818
  using round_up_correct[of e f] by simp
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   819
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   820
lemma round_down_nonneg: "0 \<le> s \<Longrightarrow> 0 \<le> round_down p s"
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 56479
diff changeset
   821
  by (auto simp: round_down_def)
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
   822
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   823
lemma ceil_divide_floor_conv:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   824
  assumes "b \<noteq> 0"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   825
  shows "\<lceil>real_of_int a / real_of_int b\<rceil> =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   826
    (if b dvd a then a div b else \<lfloor>real_of_int a / real_of_int b\<rfloor> + 1)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   827
proof (cases "b dvd a")
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   828
  case True
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   829
  then show ?thesis
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   830
    by (simp add: ceiling_def floor_divide_of_int_eq dvd_neg_div
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
   831
             flip: of_int_minus divide_minus_left)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   832
next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   833
  case False
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   834
  then have "a mod b \<noteq> 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   835
    by auto
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   836
  then have ne: "real_of_int (a mod b) / real_of_int b \<noteq> 0"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   837
    using \<open>b \<noteq> 0\<close> by auto
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   838
  have "\<lceil>real_of_int a / real_of_int b\<rceil> = \<lfloor>real_of_int a / real_of_int b\<rfloor> + 1"
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   839
    by (metis add_cancel_left_right ceiling_altdef floor_divide_of_int_eq ne of_int_div_aux)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   840
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   841
    using \<open>\<not> b dvd a\<close> by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   842
qed
19765
dfe940911617 misc cleanup;
wenzelm
parents: 16890
diff changeset
   843
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   844
qualified lemma compute_float_up[code]: "float_up p x = - float_down p (-x)"
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
   845
  by transfer (simp add: round_down_uminus_eq)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   846
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   847
end
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   848
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   849
63664
nipkow
parents: 63663
diff changeset
   850
lemma bitlen_Float:
nipkow
parents: 63663
diff changeset
   851
  fixes m e
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   852
  defines [THEN meta_eq_to_obj_eq]: "f \<equiv> Float m e"
63664
nipkow
parents: 63663
diff changeset
   853
  shows "bitlen \<bar>mantissa f\<bar> + exponent f = (if m = 0 then 0 else bitlen \<bar>m\<bar> + e)"
nipkow
parents: 63663
diff changeset
   854
proof (cases "m = 0")
nipkow
parents: 63663
diff changeset
   855
  case True
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   856
  then show ?thesis by (simp add: f_def bitlen_alt_def)
63664
nipkow
parents: 63663
diff changeset
   857
next
nipkow
parents: 63663
diff changeset
   858
  case False
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   859
  then have "f \<noteq> 0"
63664
nipkow
parents: 63663
diff changeset
   860
    unfolding real_of_float_eq by (simp add: f_def)
nipkow
parents: 63663
diff changeset
   861
  then have "mantissa f \<noteq> 0"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   862
    by (simp add: mantissa_eq_zero_iff)
63664
nipkow
parents: 63663
diff changeset
   863
  moreover
nipkow
parents: 63663
diff changeset
   864
  obtain i where "m = mantissa f * 2 ^ i" "e = exponent f - int i"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   865
    by (rule f_def[THEN denormalize_shift, OF \<open>f \<noteq> 0\<close>])
63664
nipkow
parents: 63663
diff changeset
   866
  ultimately show ?thesis by (simp add: abs_mult)
nipkow
parents: 63663
diff changeset
   867
qed
nipkow
parents: 63663
diff changeset
   868
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   869
lemma float_gt1_scale:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   870
  assumes "1 \<le> Float m e"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   871
  shows "0 \<le> e + (bitlen m - 1)"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   872
proof -
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   873
  have "0 < Float m e" using assms by auto
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   874
  then have "0 < m" using powr_gt_zero[of 2 e]
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
   875
    by (auto simp: zero_less_mult_iff)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   876
  then have "m \<noteq> 0" by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   877
  show ?thesis
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   878
  proof (cases "0 \<le> e")
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   879
    case True
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   880
    then show ?thesis
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
   881
      using \<open>0 < m\<close> by (simp add: bitlen_alt_def)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   882
  next
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   883
    case False
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   884
    have "(1::int) < 2" by simp
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   885
    let ?S = "2^(nat (-e))"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   886
    have "inverse (2 ^ nat (- e)) = 2 powr e"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   887
      using assms False powr_realpow[of 2 "nat (-e)"]
57862
8f074e6e22fc tuned proofs;
wenzelm
parents: 57512
diff changeset
   888
      by (auto simp: powr_minus field_simps)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   889
    then have "1 \<le> real_of_int m * inverse ?S"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   890
      using assms False powr_realpow[of 2 "nat (-e)"]
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   891
      by (auto simp: powr_minus)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   892
    then have "1 * ?S \<le> real_of_int m * inverse ?S * ?S"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   893
      by (rule mult_right_mono) auto
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   894
    then have "?S \<le> real_of_int m"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   895
      unfolding mult.assoc by auto
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   896
    then have "?S \<le> m"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   897
      unfolding of_int_le_iff[symmetric] by auto
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   898
    from this bitlen_bounds[OF \<open>0 < m\<close>, THEN conjunct2]
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   899
    have "nat (-e) < (nat (bitlen m))"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   900
      unfolding power_strict_increasing_iff[OF \<open>1 < 2\<close>, symmetric]
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   901
      by (rule order_le_less_trans)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   902
    then have "-e < bitlen m"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   903
      using False by auto
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   904
    then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   905
      by auto
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   906
  qed
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   907
qed
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
   908
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   909
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
   910
subsection \<open>Truncating Real Numbers\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   911
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   912
definition truncate_down::"nat \<Rightarrow> real \<Rightarrow> real"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   913
  where "truncate_down prec x = round_down (prec - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>) x"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   914
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   915
lemma truncate_down: "truncate_down prec x \<le> x"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   916
  using round_down by (simp add: truncate_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   917
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   918
lemma truncate_down_le: "x \<le> y \<Longrightarrow> truncate_down prec x \<le> y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   919
  by (rule order_trans[OF truncate_down])
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   920
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   921
lemma truncate_down_zero[simp]: "truncate_down prec 0 = 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   922
  by (simp add: truncate_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   923
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   924
lemma truncate_down_float[simp]: "truncate_down p x \<in> float"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   925
  by (auto simp: truncate_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   926
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   927
definition truncate_up::"nat \<Rightarrow> real \<Rightarrow> real"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   928
  where "truncate_up prec x = round_up (prec - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>) x"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   929
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   930
lemma truncate_up: "x \<le> truncate_up prec x"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   931
  using round_up by (simp add: truncate_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   932
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   933
lemma truncate_up_le: "x \<le> y \<Longrightarrow> x \<le> truncate_up prec y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   934
  by (rule order_trans[OF _ truncate_up])
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   935
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   936
lemma truncate_up_zero[simp]: "truncate_up prec 0 = 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   937
  by (simp add: truncate_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   938
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   939
lemma truncate_up_uminus_eq: "truncate_up prec (-x) = - truncate_down prec x"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   940
  and truncate_down_uminus_eq: "truncate_down prec (-x) = - truncate_up prec x"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   941
  by (auto simp: truncate_up_def round_up_def truncate_down_def round_down_def ceiling_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   942
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   943
lemma truncate_up_float[simp]: "truncate_up p x \<in> float"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   944
  by (auto simp: truncate_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   945
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   946
lemma mult_powr_eq: "0 < b \<Longrightarrow> b \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> x * b powr y = b powr (y + log b x)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   947
  by (simp_all add: powr_add)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   948
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   949
lemma truncate_down_pos:
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   950
  assumes "x > 0"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   951
  shows "truncate_down p x > 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   952
proof -
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
   953
  have "0 \<le> log 2 x - real_of_int \<lfloor>log 2 x\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   954
    by (simp add: algebra_simps)
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   955
  moreover have "0 \<le> real p - real_of_int \<lfloor>log 2 x\<rfloor> + log 2 x"
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   956
    by linarith
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   957
  ultimately show ?thesis
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   958
    using assms
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
   959
    by (auto simp: truncate_down_def round_down_def mult_powr_eq
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   960
      intro!: ge_one_powr_ge_zero mult_pos_pos)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   961
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   962
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   963
lemma truncate_down_nonneg: "0 \<le> y \<Longrightarrow> 0 \<le> truncate_down prec y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   964
  by (auto simp: truncate_down_def round_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   965
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   966
lemma truncate_down_ge1: "1 \<le> x \<Longrightarrow> 1 \<le> truncate_down p x"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   967
  apply (auto simp: truncate_down_def algebra_simps intro!: round_down_ge1)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   968
  apply linarith
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   969
  done
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   970
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   971
lemma truncate_up_nonpos: "x \<le> 0 \<Longrightarrow> truncate_up prec x \<le> 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   972
  by (auto simp: truncate_up_def round_up_def intro!: mult_nonpos_nonneg)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
   973
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   974
lemma truncate_up_le1:
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   975
  assumes "x \<le> 1"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   976
  shows "truncate_up p x \<le> 1"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   977
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   978
  consider "x \<le> 0" | "x > 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   979
    by arith
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   980
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   981
  proof cases
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   982
    case 1
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   983
    with truncate_up_nonpos[OF this, of p] show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   984
      by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   985
  next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   986
    case 2
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   987
    then have le: "\<lfloor>log 2 \<bar>x\<bar>\<rfloor> \<le> 0"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   988
      using assms by (auto simp: log_less_iff)
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   989
    from assms have "0 \<le> int p" by simp
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   990
    from add_mono[OF this le]
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   991
    show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   992
      using assms by (simp add: truncate_up_def round_up_le1 add_mono)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
   993
  qed
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   994
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
   995
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   996
lemma truncate_down_shift_int:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   997
  "truncate_down p (x * 2 powr real_of_int k) = truncate_down p x * 2 powr k"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
   998
  by (cases "x = 0")
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
   999
    (simp_all add: algebra_simps abs_mult log_mult truncate_down_def
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1000
      round_down_shift[of _ _ k, simplified])
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1001
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1002
lemma truncate_down_shift_nat: "truncate_down p (x * 2 powr real k) = truncate_down p x * 2 powr k"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1003
  by (metis of_int_of_nat_eq truncate_down_shift_int)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1004
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1005
lemma truncate_up_shift_int: "truncate_up p (x * 2 powr real_of_int k) = truncate_up p x * 2 powr k"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1006
  by (cases "x = 0")
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1007
    (simp_all add: algebra_simps abs_mult log_mult truncate_up_def
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1008
      round_up_shift[of _ _ k, simplified])
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1009
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1010
lemma truncate_up_shift_nat: "truncate_up p (x * 2 powr real k) = truncate_up p x * 2 powr k"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1011
  by (metis of_int_of_nat_eq truncate_up_shift_int)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1012
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1013
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1014
subsection \<open>Truncating Floats\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1015
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1016
lift_definition float_round_up :: "nat \<Rightarrow> float \<Rightarrow> float" is truncate_up
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1017
  by (simp add: truncate_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1018
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1019
lemma float_round_up: "real_of_float x \<le> real_of_float (float_round_up prec x)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1020
  using truncate_up by transfer simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1021
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1022
lemma float_round_up_zero[simp]: "float_round_up prec 0 = 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1023
  by transfer simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1024
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1025
lift_definition float_round_down :: "nat \<Rightarrow> float \<Rightarrow> float" is truncate_down
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1026
  by (simp add: truncate_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1027
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1028
lemma float_round_down: "real_of_float (float_round_down prec x) \<le> real_of_float x"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1029
  using truncate_down by transfer simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1030
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1031
lemma float_round_down_zero[simp]: "float_round_down prec 0 = 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1032
  by transfer simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1033
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1034
lemmas float_round_up_le = order_trans[OF _ float_round_up]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1035
  and float_round_down_le = order_trans[OF float_round_down]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1036
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1037
lemma minus_float_round_up_eq: "- float_round_up prec x = float_round_down prec (- x)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1038
  and minus_float_round_down_eq: "- float_round_down prec x = float_round_up prec (- x)"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1039
  by (transfer; simp add: truncate_down_uminus_eq truncate_up_uminus_eq)+
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1040
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1041
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1042
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1043
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1044
qualified lemma compute_float_round_down[code]:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1045
  "float_round_down prec (Float m e) =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1046
    (let d = bitlen \<bar>m\<bar> - int prec - 1 in
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1047
      if 0 < d then Float (div_twopow m (nat d)) (e + d)
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1048
      else Float m e)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1049
  using Float.compute_float_down[of "Suc prec - bitlen \<bar>m\<bar> - e" m e, symmetric]
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1050
  by transfer
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
  1051
    (simp add: field_simps abs_mult log_mult bitlen_alt_def truncate_down_def
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1052
      cong del: if_weak_cong)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1053
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1054
qualified lemma compute_float_round_up[code]:
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1055
  "float_round_up prec x = - float_round_down prec (-x)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1056
  by transfer (simp add: truncate_down_uminus_eq)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1057
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1058
end
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1059
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1060
lemma truncate_up_nonneg_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1061
  assumes "0 \<le> x" "x \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1062
  shows "truncate_up prec x \<le> truncate_up prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1063
proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1064
  consider "\<lfloor>log 2 x\<rfloor> = \<lfloor>log 2 y\<rfloor>" | "\<lfloor>log 2 x\<rfloor> \<noteq> \<lfloor>log 2 y\<rfloor>" "0 < x" | "x \<le> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1065
    by arith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1066
  then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1067
  proof cases
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1068
    case 1
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1069
    then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1070
      using assms
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1071
      by (auto simp: truncate_up_def round_up_def intro!: ceiling_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1072
  next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1073
    case 2
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1074
    from assms \<open>0 < x\<close> have "log 2 x \<le> log 2 y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1075
      by auto
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1076
    with \<open>\<lfloor>log 2 x\<rfloor> \<noteq> \<lfloor>log 2 y\<rfloor>\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1077
    have logless: "log 2 x < log 2 y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1078
      by linarith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1079
    have flogless: "\<lfloor>log 2 x\<rfloor> < \<lfloor>log 2 y\<rfloor>"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1080
      using \<open>\<lfloor>log 2 x\<rfloor> \<noteq> \<lfloor>log 2 y\<rfloor>\<close> \<open>log 2 x \<le> log 2 y\<close> by linarith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1081
    have "truncate_up prec x =
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1082
      real_of_int \<lceil>x * 2 powr real_of_int (int prec - \<lfloor>log 2 x\<rfloor> )\<rceil> * 2 powr - real_of_int (int prec - \<lfloor>log 2 x\<rfloor>)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1083
      using assms by (simp add: truncate_up_def round_up_def)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1084
    also have "\<lceil>x * 2 powr real_of_int (int prec - \<lfloor>log 2 x\<rfloor>)\<rceil> \<le> (2 ^ (Suc prec))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1085
    proof (simp only: ceiling_le_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1086
      have "x * 2 powr real_of_int (int prec - \<lfloor>log 2 x\<rfloor>) \<le>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1087
        x * (2 powr real (Suc prec) / (2 powr log 2 x))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1088
        using real_of_int_floor_add_one_ge[of "log 2 x"] assms
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1089
        by (auto simp: algebra_simps simp flip: powr_diff intro!: mult_left_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1090
      then show "x * 2 powr real_of_int (int prec - \<lfloor>log 2 x\<rfloor>) \<le> real_of_int ((2::int) ^ (Suc prec))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1091
        using \<open>0 < x\<close> by (simp add: powr_realpow powr_add)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1092
    qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1093
    then have "real_of_int \<lceil>x * 2 powr real_of_int (int prec - \<lfloor>log 2 x\<rfloor>)\<rceil> \<le> 2 powr int (Suc prec)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1094
      by (auto simp: powr_realpow powr_add)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1095
        (metis power_Suc of_int_le_numeral_power_cancel_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1096
    also
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1097
    have "2 powr - real_of_int (int prec - \<lfloor>log 2 x\<rfloor>) \<le> 2 powr - real_of_int (int prec - \<lfloor>log 2 y\<rfloor> + 1)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1098
      using logless flogless by (auto intro!: floor_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1099
    also have "2 powr real_of_int (int (Suc prec)) \<le>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1100
        2 powr (log 2 y + real_of_int (int prec - \<lfloor>log 2 y\<rfloor> + 1))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1101
      using assms \<open>0 < x\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1102
      by (auto simp: algebra_simps)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1103
    finally have "truncate_up prec x \<le>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1104
        2 powr (log 2 y + real_of_int (int prec - \<lfloor>log 2 y\<rfloor> + 1)) * 2 powr - real_of_int (int prec - \<lfloor>log 2 y\<rfloor> + 1)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1105
      by simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1106
    also have "\<dots> = 2 powr (log 2 y + real_of_int (int prec - \<lfloor>log 2 y\<rfloor>) - real_of_int (int prec - \<lfloor>log 2 y\<rfloor>))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1107
      by (subst powr_add[symmetric]) simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1108
    also have "\<dots> = y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1109
      using \<open>0 < x\<close> assms
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1110
      by (simp add: powr_add)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1111
    also have "\<dots> \<le> truncate_up prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1112
      by (rule truncate_up)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1113
    finally show ?thesis .
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1114
  next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1115
    case 3
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1116
    then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1117
      using assms
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1118
      by (auto intro!: truncate_up_le)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1119
  qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1120
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1121
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1122
lemma truncate_up_switch_sign_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1123
  assumes "x \<le> 0" "0 \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1124
  shows "truncate_up prec x \<le> truncate_up prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1125
proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1126
  note truncate_up_nonpos[OF \<open>x \<le> 0\<close>]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1127
  also note truncate_up_le[OF \<open>0 \<le> y\<close>]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1128
  finally show ?thesis .
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1129
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1130
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1131
lemma truncate_down_switch_sign_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1132
  assumes "x \<le> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1133
    and "0 \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1134
    and "x \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1135
  shows "truncate_down prec x \<le> truncate_down prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1136
proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1137
  note truncate_down_le[OF \<open>x \<le> 0\<close>]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1138
  also note truncate_down_nonneg[OF \<open>0 \<le> y\<close>]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1139
  finally show ?thesis .
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1140
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1141
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1142
lemma truncate_down_nonneg_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1143
  assumes "0 \<le> x" "x \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1144
  shows "truncate_down prec x \<le> truncate_down prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1145
proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1146
  consider "x \<le> 0" | "\<lfloor>log 2 \<bar>x\<bar>\<rfloor> = \<lfloor>log 2 \<bar>y\<bar>\<rfloor>" |
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1147
    "0 < x" "\<lfloor>log 2 \<bar>x\<bar>\<rfloor> \<noteq> \<lfloor>log 2 \<bar>y\<bar>\<rfloor>"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1148
    by arith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1149
  then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1150
  proof cases
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1151
    case 1
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1152
    with assms have "x = 0" "0 \<le> y" by simp_all
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1153
    then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1154
      by (auto intro!: truncate_down_nonneg)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1155
  next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1156
    case 2
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1157
    then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1158
      using assms
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1159
      by (auto simp: truncate_down_def round_down_def intro!: floor_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1160
  next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1161
    case 3
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1162
    from \<open>0 < x\<close> have "log 2 x \<le> log 2 y" "0 < y" "0 \<le> y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1163
      using assms by auto
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1164
    with \<open>\<lfloor>log 2 \<bar>x\<bar>\<rfloor> \<noteq> \<lfloor>log 2 \<bar>y\<bar>\<rfloor>\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1165
    have logless: "log 2 x < log 2 y" and flogless: "\<lfloor>log 2 x\<rfloor> < \<lfloor>log 2 y\<rfloor>"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1166
      unfolding atomize_conj abs_of_pos[OF \<open>0 < x\<close>] abs_of_pos[OF \<open>0 < y\<close>]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1167
      by (metis floor_less_cancel linorder_cases not_le)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1168
    have "2 powr prec \<le> y * 2 powr real prec / (2 powr log 2 y)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1169
      using \<open>0 < y\<close> by simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1170
    also have "\<dots> \<le> y * 2 powr real (Suc prec) / (2 powr (real_of_int \<lfloor>log 2 y\<rfloor> + 1))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1171
      using \<open>0 \<le> y\<close> \<open>0 \<le> x\<close> assms(2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1172
      by (auto intro!: powr_mono divide_left_mono
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1173
          simp: of_nat_diff powr_add powr_diff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1174
    also have "\<dots> = y * 2 powr real (Suc prec) / (2 powr real_of_int \<lfloor>log 2 y\<rfloor> * 2)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1175
      by (auto simp: powr_add)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1176
    finally have "(2 ^ prec) \<le> \<lfloor>y * 2 powr real_of_int (int (Suc prec) - \<lfloor>log 2 \<bar>y\<bar>\<rfloor> - 1)\<rfloor>"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1177
      using \<open>0 \<le> y\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1178
      by (auto simp: powr_diff le_floor_iff powr_realpow powr_add)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1179
    then have "(2 ^ (prec)) * 2 powr - real_of_int (int prec - \<lfloor>log 2 \<bar>y\<bar>\<rfloor>) \<le> truncate_down prec y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1180
      by (auto simp: truncate_down_def round_down_def)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1181
    moreover have "x \<le> (2 ^ prec) * 2 powr - real_of_int (int prec - \<lfloor>log 2 \<bar>y\<bar>\<rfloor>)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1182
    proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1183
      have "x = 2 powr (log 2 \<bar>x\<bar>)" using \<open>0 < x\<close> by simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1184
      also have "\<dots> \<le> (2 ^ (Suc prec )) * 2 powr - real_of_int (int prec - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1185
        using real_of_int_floor_add_one_ge[of "log 2 \<bar>x\<bar>"] \<open>0 < x\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1186
        by (auto simp flip: powr_realpow powr_add simp: algebra_simps powr_mult_base le_powr_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1187
      also
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1188
      have "2 powr - real_of_int (int prec - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>) \<le> 2 powr - real_of_int (int prec - \<lfloor>log 2 \<bar>y\<bar>\<rfloor> + 1)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1189
        using logless flogless \<open>x > 0\<close> \<open>y > 0\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1190
        by (auto intro!: floor_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1191
      finally show ?thesis
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  1192
        by (auto simp flip: powr_realpow simp: powr_diff assms)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1193
    qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1194
    ultimately show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1195
      by (metis dual_order.trans truncate_down)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1196
  qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1197
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1198
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1199
lemma truncate_down_eq_truncate_up: "truncate_down p x = - truncate_up p (-x)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1200
  and truncate_up_eq_truncate_down: "truncate_up p x = - truncate_down p (-x)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1201
  by (auto simp: truncate_up_uminus_eq truncate_down_uminus_eq)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1202
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1203
lemma truncate_down_mono: "x \<le> y \<Longrightarrow> truncate_down p x \<le> truncate_down p y"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  1204
  by (smt (verit) truncate_down_nonneg_mono truncate_up_nonneg_mono truncate_up_uminus_eq)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1205
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1206
lemma truncate_up_mono: "x \<le> y \<Longrightarrow> truncate_up p x \<le> truncate_up p y"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1207
  by (simp add: truncate_up_eq_truncate_down truncate_down_mono)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1208
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1209
lemma truncate_up_nonneg: "0 \<le> truncate_up p x" if "0 \<le> x"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1210
  by (simp add: that truncate_up_le)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1211
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1212
lemma truncate_up_pos: "0 < truncate_up p x" if "0 < x"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1213
  by (meson less_le_trans that truncate_up)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1214
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1215
lemma truncate_up_less_zero_iff[simp]: "truncate_up p x < 0 \<longleftrightarrow> x < 0"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  1216
  by (smt (verit) truncate_down_pos truncate_down_uminus_eq truncate_up_nonneg)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1217
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1218
lemma truncate_up_nonneg_iff[simp]: "truncate_up p x \<ge> 0 \<longleftrightarrow> x \<ge> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1219
  using truncate_up_less_zero_iff[of p x] truncate_up_nonneg[of x]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1220
  by linarith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1221
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1222
lemma truncate_down_less_zero_iff[simp]: "truncate_down p x < 0 \<longleftrightarrow> x < 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1223
  by (metis le_less_trans not_less_iff_gr_or_eq truncate_down truncate_down_pos truncate_down_zero)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1224
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1225
lemma truncate_down_nonneg_iff[simp]: "truncate_down p x \<ge> 0 \<longleftrightarrow> x \<ge> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1226
  using truncate_down_less_zero_iff[of p x] truncate_down_nonneg[of x p]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1227
  by linarith
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1228
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1229
lemma truncate_down_eq_zero_iff[simp]: "truncate_down prec x = 0 \<longleftrightarrow> x = 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1230
  by (metis not_less_iff_gr_or_eq truncate_down_less_zero_iff truncate_down_pos truncate_down_zero)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1231
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1232
lemma truncate_up_eq_zero_iff[simp]: "truncate_up prec x = 0 \<longleftrightarrow> x = 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1233
  by (metis not_less_iff_gr_or_eq truncate_up_less_zero_iff truncate_up_pos truncate_up_zero)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1234
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1235
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1236
subsection \<open>Approximation of positive rationals\<close>
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1237
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1238
lemma div_mult_twopow_eq: "a div ((2::nat) ^ n) div b = a div (b * 2 ^ n)" for a b :: nat
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1239
  by (cases "b = 0") (simp_all add: div_mult2_eq[symmetric] ac_simps)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1240
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1241
lemma real_div_nat_eq_floor_of_divide: "a div b = real_of_int \<lfloor>a / b\<rfloor>" for a b :: nat
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1242
  by (simp add: floor_divide_of_nat_eq [of a b])
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1243
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1244
definition "rat_precision prec x y =
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1245
  (let d = bitlen x - bitlen y
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1246
   in int prec - d + (if Float (abs x) 0 < Float (abs y) d then 1 else 0))"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1247
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1248
lemma floor_log_divide_eq:
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1249
  assumes "i > 0" "j > 0" "p > 1"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1250
  shows "\<lfloor>log p (i / j)\<rfloor> = floor (log p i) - floor (log p j) -
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1251
    (if i \<ge> j * p powr (floor (log p i) - floor (log p j)) then 0 else 1)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1252
proof -
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1253
  let ?l = "log p"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1254
  let ?fl = "\<lambda>x. floor (?l x)"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1255
  have "\<lfloor>?l (i / j)\<rfloor> = \<lfloor>?l i - ?l j\<rfloor>" using assms
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1256
    by (auto simp: log_divide)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1257
  also have "\<dots> = floor (real_of_int (?fl i - ?fl j) + (?l i - ?fl i - (?l j - ?fl j)))"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1258
    (is "_ = floor (_ + ?r)")
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1259
    by (simp add: algebra_simps)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1260
  also note floor_add2
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1261
  also note \<open>p > 1\<close>
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1262
  note powr = powr_le_cancel_iff[symmetric, OF \<open>1 < p\<close>, THEN iffD2]
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1263
  note powr_strict = powr_less_cancel_iff[symmetric, OF \<open>1 < p\<close>, THEN iffD2]
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1264
  have "floor ?r = (if i \<ge> j * p powr (?fl i - ?fl j) then 0 else -1)" (is "_ = ?if")
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1265
    using assms
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  1266
    apply simp
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  1267
    by (smt (verit, ccfv_SIG) floor_less_iff floor_uminus_of_int le_log_iff mult_powr_eq
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  1268
        of_int_1 real_of_int_floor_add_one_gt zero_le_floor)
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1269
  finally
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1270
  show ?thesis by simp
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1271
qed
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1272
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1273
lemma truncate_down_rat_precision:
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1274
    "truncate_down prec (real x / real y) = round_down (rat_precision prec x y) (real x / real y)"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1275
  and truncate_up_rat_precision:
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1276
    "truncate_up prec (real x / real y) = round_up (rat_precision prec x y) (real x / real y)"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1277
  unfolding truncate_down_def truncate_up_def rat_precision_def
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
  1278
  by (cases x; cases y) (auto simp: floor_log_divide_eq algebra_simps bitlen_alt_def)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1279
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1280
lift_definition lapprox_posrat :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1281
  is "\<lambda>prec (x::nat) (y::nat). truncate_down prec (x / y)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1282
  by simp
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  1283
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1284
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1285
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1286
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1287
qualified lemma compute_lapprox_posrat[code]:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1288
  "lapprox_posrat prec x y =
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  1289
   (let
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1290
      l = rat_precision prec x y;
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1291
      d = if 0 \<le> l then x * 2^nat l div y else x div 2^nat (- l) div y
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1292
    in normfloat (Float d (- l)))"
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1293
    unfolding div_mult_twopow_eq
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1294
    by transfer
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1295
      (simp add: round_down_def powr_int real_div_nat_eq_floor_of_divide field_simps Let_def
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1296
        truncate_down_rat_precision del: two_powr_minus_int_float)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1297
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1298
end
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1299
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1300
lift_definition rapprox_posrat :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> float"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1301
  is "\<lambda>prec (x::nat) (y::nat). truncate_up prec (x / y)"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1302
  by simp
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1303
60376
wenzelm
parents: 60017
diff changeset
  1304
context
wenzelm
parents: 60017
diff changeset
  1305
begin
wenzelm
parents: 60017
diff changeset
  1306
wenzelm
parents: 60017
diff changeset
  1307
qualified lemma compute_rapprox_posrat[code]:
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1308
  fixes prec x y
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1309
  defines "l \<equiv> rat_precision prec x y"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1310
  shows "rapprox_posrat prec x y =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1311
   (let
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1312
      l = l;
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1313
      (r, s) = if 0 \<le> l then (x * 2^nat l, y) else (x, y * 2^nat(-l));
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1314
      d = r div s;
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1315
      m = r mod s
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1316
    in normfloat (Float (d + (if m = 0 \<or> y = 0 then 0 else 1)) (- l)))"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1317
proof (cases "y = 0")
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1318
  assume "y = 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1319
  then show ?thesis by transfer simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1320
next
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1321
  assume "y \<noteq> 0"
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1322
  show ?thesis
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1323
  proof (cases "0 \<le> l")
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1324
    case True
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62421
diff changeset
  1325
    define x' where "x' = x * 2 ^ nat l"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1326
    have "int x * 2 ^ nat l = x'"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1327
      by (simp add: x'_def)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1328
    moreover have "real x * 2 powr l = real x'"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1329
      by (simp flip: powr_realpow add: \<open>0 \<le> l\<close> x'_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1330
    ultimately show ?thesis
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1331
      using ceil_divide_floor_conv[of y x'] powr_realpow[of 2 "nat l"] \<open>0 \<le> l\<close> \<open>y \<noteq> 0\<close>
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1332
        l_def[symmetric, THEN meta_eq_to_obj_eq]
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1333
      apply transfer
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1334
      apply (auto simp add: round_up_def truncate_up_rat_precision)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1335
      apply (metis floor_divide_of_int_eq of_int_of_nat_eq)
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1336
      done
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1337
   next
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1338
    case False
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62421
diff changeset
  1339
    define y' where "y' = y * 2 ^ nat (- l)"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1340
    from \<open>y \<noteq> 0\<close> have "y' \<noteq> 0" by (simp add: y'_def)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1341
    have "int y * 2 ^ nat (- l) = y'"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1342
      by (simp add: y'_def)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1343
    moreover have "real x * real_of_int (2::int) powr real_of_int l / real y = x / real y'"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1344
      using \<open>\<not> 0 \<le> l\<close> by (simp flip: powr_realpow add: powr_minus y'_def field_simps)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1345
    ultimately show ?thesis
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1346
      using ceil_divide_floor_conv[of y' x] \<open>\<not> 0 \<le> l\<close> \<open>y' \<noteq> 0\<close> \<open>y \<noteq> 0\<close>
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1347
        l_def[symmetric, THEN meta_eq_to_obj_eq]
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1348
      apply transfer
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1349
      apply (auto simp add: round_up_def ceil_divide_floor_conv truncate_up_rat_precision)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1350
      apply (metis floor_divide_of_int_eq of_int_of_nat_eq)
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1351
      done
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1352
  qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1353
qed
60376
wenzelm
parents: 60017
diff changeset
  1354
wenzelm
parents: 60017
diff changeset
  1355
end
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1356
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1357
lemma rat_precision_pos:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1358
  assumes "0 \<le> x"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1359
    and "0 < y"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1360
    and "2 * x < y"
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1361
  shows "rat_precision n (int x) (int y) > 0"
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1362
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1363
  have "0 < x \<Longrightarrow> log 2 x + 1 = log 2 (2 * x)"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1364
    by (simp add: log_mult)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1365
  then have "bitlen (int x) < bitlen (int y)"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1366
    using assms
63599
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1367
    by (simp add: bitlen_alt_def)
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1368
      (auto intro!: floor_mono simp add: one_add_floor)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1369
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1370
    using assms
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1371
    by (auto intro!: pos_add_strict simp add: field_simps rat_precision_def)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1372
qed
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  1373
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
  1374
lemma rapprox_posrat_less1:
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1375
  "0 \<le> x \<Longrightarrow> 0 < y \<Longrightarrow> 2 * x < y \<Longrightarrow> real_of_float (rapprox_posrat n x y) < 1"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1376
  by transfer (simp add: rat_precision_pos round_up_less1 truncate_up_rat_precision)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  1377
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1378
lift_definition lapprox_rat :: "nat \<Rightarrow> int \<Rightarrow> int \<Rightarrow> float" is
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1379
  "\<lambda>prec (x::int) (y::int). truncate_down prec (x / y)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1380
  by simp
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  1381
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1382
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1383
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1384
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1385
qualified lemma compute_lapprox_rat[code]:
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1386
  "lapprox_rat prec x y =
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1387
   (if y = 0 then 0
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1388
    else if 0 \<le> x then
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1389
     (if 0 < y then lapprox_posrat prec (nat x) (nat y)
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  1390
      else - (rapprox_posrat prec (nat x) (nat (-y))))
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1391
      else
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1392
       (if 0 < y
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1393
        then - (rapprox_posrat prec (nat (-x)) (nat y))
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1394
        else lapprox_posrat prec (nat (-x)) (nat (-y))))"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1395
  by transfer (simp add: truncate_up_uminus_eq)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1396
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1397
lift_definition rapprox_rat :: "nat \<Rightarrow> int \<Rightarrow> int \<Rightarrow> float" is
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1398
  "\<lambda>prec (x::int) (y::int). truncate_up prec (x / y)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1399
  by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1400
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1401
lemma "rapprox_rat = rapprox_posrat"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1402
  by transfer auto
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1403
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1404
lemma "lapprox_rat = lapprox_posrat"
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1405
  by transfer auto
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1406
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1407
qualified lemma compute_rapprox_rat[code]:
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1408
  "rapprox_rat prec x y = - lapprox_rat prec (-x) y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1409
  by transfer (simp add: truncate_down_uminus_eq)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1410
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1411
qualified lemma compute_truncate_down[code]:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1412
  "truncate_down p (Ratreal r) = (let (a, b) = quotient_of r in lapprox_rat p a b)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1413
  by transfer (auto split: prod.split simp: of_rat_divide dest!: quotient_of_div)
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1414
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1415
qualified lemma compute_truncate_up[code]:
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1416
  "truncate_up p (Ratreal r) = (let (a, b) = quotient_of r in rapprox_rat p a b)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1417
  by transfer (auto split: prod.split simp:  of_rat_divide dest!: quotient_of_div)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1418
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1419
end
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1420
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1421
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1422
subsection \<open>Division\<close>
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1423
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1424
definition "real_divl prec a b = truncate_down prec (a / b)"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1425
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1426
definition "real_divr prec a b = truncate_up prec (a / b)"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1427
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1428
lift_definition float_divl :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float" is real_divl
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1429
  by (simp add: real_divl_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1430
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1431
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1432
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1433
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1434
qualified lemma compute_float_divl[code]:
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1435
  "float_divl prec (Float m1 s1) (Float m2 s2) = lapprox_rat prec m1 m2 * Float 1 (s1 - s2)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1436
  apply transfer
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1437
  unfolding real_divl_def of_int_1 mult_1 truncate_down_shift_int[symmetric]
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1438
  apply (simp add: powr_diff powr_minus)
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1439
  done
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1440
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1441
lift_definition float_divr :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float" is real_divr
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  1442
  by (simp add: real_divr_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  1443
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1444
qualified lemma compute_float_divr[code]:
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  1445
  "float_divr prec x y = - float_divl prec (-x) y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1446
  by transfer (simp add: real_divr_def real_divl_def truncate_down_uminus_eq)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1447
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1448
end
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  1449
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  1450
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1451
subsection \<open>Approximate Addition\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1452
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1453
definition "plus_down prec x y = truncate_down prec (x + y)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1454
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1455
definition "plus_up prec x y = truncate_up prec (x + y)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1456
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1457
lemma float_plus_down_float[intro, simp]: "x \<in> float \<Longrightarrow> y \<in> float \<Longrightarrow> plus_down p x y \<in> float"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1458
  by (simp add: plus_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1459
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1460
lemma float_plus_up_float[intro, simp]: "x \<in> float \<Longrightarrow> y \<in> float \<Longrightarrow> plus_up p x y \<in> float"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1461
  by (simp add: plus_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1462
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1463
lift_definition float_plus_down :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float" is plus_down ..
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1464
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1465
lift_definition float_plus_up :: "nat \<Rightarrow> float \<Rightarrow> float \<Rightarrow> float" is plus_up ..
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1466
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1467
lemma plus_down: "plus_down prec x y \<le> x + y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1468
  and plus_up: "x + y \<le> plus_up prec x y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1469
  by (auto simp: plus_down_def truncate_down plus_up_def truncate_up)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1470
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1471
lemma float_plus_down: "real_of_float (float_plus_down prec x y) \<le> x + y"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1472
  and float_plus_up: "x + y \<le> real_of_float (float_plus_up prec x y)"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1473
  by (transfer; rule plus_down plus_up)+
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1474
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1475
lemmas plus_down_le = order_trans[OF plus_down]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1476
  and plus_up_le = order_trans[OF _ plus_up]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1477
  and float_plus_down_le = order_trans[OF float_plus_down]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1478
  and float_plus_up_le = order_trans[OF _ float_plus_up]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1479
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1480
lemma compute_plus_up[code]: "plus_up p x y = - plus_down p (-x) (-y)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1481
  using truncate_down_uminus_eq[of p "x + y"]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1482
  by (auto simp: plus_down_def plus_up_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1483
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1484
lemma truncate_down_log2_eqI:
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1485
  assumes "\<lfloor>log 2 \<bar>x\<bar>\<rfloor> = \<lfloor>log 2 \<bar>y\<bar>\<rfloor>"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1486
  assumes "\<lfloor>x * 2 powr (p - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>)\<rfloor> = \<lfloor>y * 2 powr (p - \<lfloor>log 2 \<bar>x\<bar>\<rfloor>)\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1487
  shows "truncate_down p x = truncate_down p y"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1488
  using assms by (auto simp: truncate_down_def round_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1489
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1490
lemma sum_neq_zeroI:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1491
  "\<bar>a\<bar> \<ge> k \<Longrightarrow> \<bar>b\<bar> < k \<Longrightarrow> a + b \<noteq> 0"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1492
  "\<bar>a\<bar> > k \<Longrightarrow> \<bar>b\<bar> \<le> k \<Longrightarrow> a + b \<noteq> 0"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1493
  for a k :: real
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1494
  by auto
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1495
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1496
lemma abs_real_le_2_powr_bitlen[simp]: "\<bar>real_of_int m2\<bar> < 2 powr real_of_int (bitlen \<bar>m2\<bar>)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1497
proof (cases "m2 = 0")
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1498
  case True
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1499
  then show ?thesis by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1500
next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1501
  case False
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1502
  then have "\<bar>m2\<bar> < 2 ^ nat (bitlen \<bar>m2\<bar>)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1503
    using bitlen_bounds[of "\<bar>m2\<bar>"]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1504
    by (auto simp: powr_add bitlen_nonneg)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1505
  then show ?thesis
66912
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65583
diff changeset
  1506
    by (metis bitlen_nonneg powr_int of_int_abs of_int_less_numeral_power_cancel_iff
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65583
diff changeset
  1507
        zero_less_numeral)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1508
qed
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1509
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1510
lemma floor_sum_times_2_powr_sgn_eq:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1511
  fixes ai p q :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1512
    and a b :: real
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1513
  assumes "a * 2 powr p = ai"
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1514
    and b_le_1: "\<bar>b * 2 powr (p + 1)\<bar> \<le> 1"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1515
    and leqp: "q \<le> p"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1516
  shows "\<lfloor>(a + b) * 2 powr q\<rfloor> = \<lfloor>(2 * ai + sgn b) * 2 powr (q - p - 1)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1517
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1518
  consider "b = 0" | "b > 0" | "b < 0" by arith
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1519
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1520
  proof cases
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1521
    case 1
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1522
    then show ?thesis
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1523
      by (simp flip: assms(1) powr_add add: algebra_simps powr_mult_base)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1524
  next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1525
    case 2
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1526
    then have "b * 2 powr p < \<bar>b * 2 powr (p + 1)\<bar>"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1527
      by simp
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1528
    also note b_le_1
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1529
    finally have b_less_1: "b * 2 powr real_of_int p < 1" .
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1530
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1531
    from b_less_1 \<open>b > 0\<close> have floor_eq: "\<lfloor>b * 2 powr real_of_int p\<rfloor> = 0" "\<lfloor>sgn b / 2\<rfloor> = 0"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1532
      by (simp_all add: floor_eq_iff)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1533
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1534
    have "\<lfloor>(a + b) * 2 powr q\<rfloor> = \<lfloor>(a + b) * 2 powr p * 2 powr (q - p)\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1535
      by (simp add: algebra_simps flip: powr_realpow powr_add)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1536
    also have "\<dots> = \<lfloor>(ai + b * 2 powr p) * 2 powr (q - p)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1537
      by (simp add: assms algebra_simps)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1538
    also have "\<dots> = \<lfloor>(ai + b * 2 powr p) / real_of_int ((2::int) ^ nat (p - q))\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1539
      using assms
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1540
      by (simp add: algebra_simps divide_powr_uminus flip: powr_realpow powr_add)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1541
    also have "\<dots> = \<lfloor>ai / real_of_int ((2::int) ^ nat (p - q))\<rfloor>"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1542
      by (simp del: of_int_power add: floor_divide_real_eq_div floor_eq)
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1543
    finally have "\<lfloor>(a + b) * 2 powr real_of_int q\<rfloor> = \<lfloor>real_of_int ai / real_of_int ((2::int) ^ nat (p - q))\<rfloor>" .
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1544
    moreover
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1545
    have "\<lfloor>(2 * ai + (sgn b)) * 2 powr (real_of_int (q - p) - 1)\<rfloor> =
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1546
        \<lfloor>real_of_int ai / real_of_int ((2::int) ^ nat (p - q))\<rfloor>"
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1547
    proof -
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1548
      have "\<lfloor>(2 * ai + sgn b) * 2 powr (real_of_int (q - p) - 1)\<rfloor> = \<lfloor>(ai + sgn b / 2) * 2 powr (q - p)\<rfloor>"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1549
        by (subst powr_diff) (simp add: field_simps)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1550
      also have "\<dots> = \<lfloor>(ai + sgn b / 2) / real_of_int ((2::int) ^ nat (p - q))\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1551
        using leqp by (simp flip: powr_realpow add: powr_diff)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1552
      also have "\<dots> = \<lfloor>ai / real_of_int ((2::int) ^ nat (p - q))\<rfloor>"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1553
        by (simp del: of_int_power add: floor_divide_real_eq_div floor_eq)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1554
      finally show ?thesis .
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1555
    qed
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1556
    ultimately show ?thesis by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1557
  next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1558
    case 3
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1559
    then have floor_eq: "\<lfloor>b * 2 powr (real_of_int p + 1)\<rfloor> = -1"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1560
      using b_le_1
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1561
      by (auto simp: floor_eq_iff algebra_simps pos_divide_le_eq[symmetric] abs_if divide_powr_uminus
62390
842917225d56 more canonical names
nipkow
parents: 62348
diff changeset
  1562
        intro!: mult_neg_pos split: if_split_asm)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1563
    have "\<lfloor>(a + b) * 2 powr q\<rfloor> = \<lfloor>(2*a + 2*b) * 2 powr p * 2 powr (q - p - 1)\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1564
      by (simp add: algebra_simps powr_mult_base flip: powr_realpow powr_add)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1565
    also have "\<dots> = \<lfloor>(2 * (a * 2 powr p) + 2 * b * 2 powr p) * 2 powr (q - p - 1)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1566
      by (simp add: algebra_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1567
    also have "\<dots> = \<lfloor>(2 * ai + b * 2 powr (p + 1)) / 2 powr (1 - q + p)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1568
      using assms by (simp add: algebra_simps powr_mult_base divide_powr_uminus)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1569
    also have "\<dots> = \<lfloor>(2 * ai + b * 2 powr (p + 1)) / real_of_int ((2::int) ^ nat (p - q + 1))\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1570
      using assms by (simp add: algebra_simps flip: powr_realpow)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1571
    also have "\<dots> = \<lfloor>(2 * ai - 1) / real_of_int ((2::int) ^ nat (p - q + 1))\<rfloor>"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1572
      using \<open>b < 0\<close> assms
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1573
      by (simp add: floor_divide_of_int_eq floor_eq floor_divide_real_eq_div
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1574
        del: of_int_mult of_int_power of_int_diff)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1575
    also have "\<dots> = \<lfloor>(2 * ai - 1) * 2 powr (q - p - 1)\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1576
      using assms by (simp add: algebra_simps divide_powr_uminus flip: powr_realpow)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1577
    finally show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1578
      using \<open>b < 0\<close> by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1579
  qed
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1580
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1581
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1582
lemma log2_abs_int_add_less_half_sgn_eq:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1583
  fixes ai :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1584
    and b :: real
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1585
  assumes "\<bar>b\<bar> \<le> 1/2"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1586
    and "ai \<noteq> 0"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1587
  shows "\<lfloor>log 2 \<bar>real_of_int ai + b\<bar>\<rfloor> = \<lfloor>log 2 \<bar>ai + sgn b / 2\<bar>\<rfloor>"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1588
proof (cases "b = 0")
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1589
  case True
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1590
  then show ?thesis by simp
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1591
next
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1592
  case False
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62421
diff changeset
  1593
  define k where "k = \<lfloor>log 2 \<bar>ai\<bar>\<rfloor>"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1594
  then have "\<lfloor>log 2 \<bar>ai\<bar>\<rfloor> = k"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1595
    by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1596
  then have k: "2 powr k \<le> \<bar>ai\<bar>" "\<bar>ai\<bar> < 2 powr (k + 1)"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1597
    by (simp_all add: floor_log_eq_powr_iff \<open>ai \<noteq> 0\<close>)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1598
  have "k \<ge> 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1599
    using assms by (auto simp: k_def)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62421
diff changeset
  1600
  define r where "r = \<bar>ai\<bar> - 2 ^ nat k"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1601
  have r: "0 \<le> r" "r < 2 powr k"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1602
    using \<open>k \<ge> 0\<close> k
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1603
    by (auto simp: r_def k_def algebra_simps powr_add abs_if powr_int)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1604
  then have "r \<le> (2::int) ^ nat k - 1"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1605
    using \<open>k \<ge> 0\<close> by (auto simp: powr_int)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1606
  from this[simplified of_int_le_iff[symmetric]] \<open>0 \<le> k\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1607
  have r_le: "r \<le> 2 powr k - 1"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1608
    by (auto simp: algebra_simps powr_int)
66912
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65583
diff changeset
  1609
      (metis of_int_1 of_int_add of_int_le_numeral_power_cancel_iff)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1610
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1611
  have "\<bar>ai\<bar> = 2 powr k + r"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1612
    using \<open>k \<ge> 0\<close> by (auto simp: k_def r_def simp flip: powr_realpow)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1613
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1614
  have pos: "\<bar>b\<bar> < 1 \<Longrightarrow> 0 < 2 powr k + (r + b)" for b :: real
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1615
    using \<open>0 \<le> k\<close> \<open>ai \<noteq> 0\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1616
    by (auto simp add: r_def powr_realpow[symmetric] abs_if sgn_if algebra_simps
62390
842917225d56 more canonical names
nipkow
parents: 62348
diff changeset
  1617
      split: if_split_asm)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1618
  have less: "\<bar>sgn ai * b\<bar> < 1"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1619
    and less': "\<bar>sgn (sgn ai * b) / 2\<bar> < 1"
62390
842917225d56 more canonical names
nipkow
parents: 62348
diff changeset
  1620
    using \<open>\<bar>b\<bar> \<le> _\<close> by (auto simp: abs_if sgn_if split: if_split_asm)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1621
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1622
  have floor_eq: "\<And>b::real. \<bar>b\<bar> \<le> 1 / 2 \<Longrightarrow>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1623
      \<lfloor>log 2 (1 + (r + b) / 2 powr k)\<rfloor> = (if r = 0 \<and> b < 0 then -1 else 0)"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1624
    using \<open>k \<ge> 0\<close> r r_le
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1625
    by (auto simp: floor_log_eq_powr_iff powr_minus_divide field_simps sgn_if)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1626
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1627
  from \<open>real_of_int \<bar>ai\<bar> = _\<close> have "\<bar>ai + b\<bar> = 2 powr k + (r + sgn ai * b)"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1628
    using \<open>\<bar>b\<bar> \<le> _\<close> \<open>0 \<le> k\<close> r
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1629
    by (auto simp add: sgn_if abs_if)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1630
  also have "\<lfloor>log 2 \<dots>\<rfloor> = \<lfloor>log 2 (2 powr k + r + sgn (sgn ai * b) / 2)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1631
  proof -
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1632
    have "2 powr k + (r + (sgn ai) * b) = 2 powr k * (1 + (r + sgn ai * b) / 2 powr k)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1633
      by (simp add: field_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1634
    also have "\<lfloor>log 2 \<dots>\<rfloor> = k + \<lfloor>log 2 (1 + (r + sgn ai * b) / 2 powr k)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1635
      using pos[OF less]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1636
      by (subst log_mult) (simp_all add: log_mult powr_mult field_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1637
    also
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1638
    let ?if = "if r = 0 \<and> sgn ai * b < 0 then -1 else 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1639
    have "\<lfloor>log 2 (1 + (r + sgn ai * b) / 2 powr k)\<rfloor> = ?if"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1640
      using \<open>\<bar>b\<bar> \<le> _\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1641
      by (intro floor_eq) (auto simp: abs_mult sgn_if)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1642
    also
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1643
    have "\<dots> = \<lfloor>log 2 (1 + (r + sgn (sgn ai * b) / 2) / 2 powr k)\<rfloor>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1644
      by (subst floor_eq) (auto simp: sgn_if)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1645
    also have "k + \<dots> = \<lfloor>log 2 (2 powr k * (1 + (r + sgn (sgn ai * b) / 2) / 2 powr k))\<rfloor>"
63599
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1646
      unfolding int_add_floor
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  1647
      using pos[OF less'] \<open>\<bar>b\<bar> \<le> _\<close>
63599
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1648
      by (simp add: field_simps add_log_eq_powr del: floor_add2)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1649
    also have "2 powr k * (1 + (r + sgn (sgn ai * b) / 2) / 2 powr k) =
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1650
        2 powr k + r + sgn (sgn ai * b) / 2"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1651
      by (simp add: sgn_if field_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1652
    finally show ?thesis .
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1653
  qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1654
  also have "2 powr k + r + sgn (sgn ai * b) / 2 = \<bar>ai + sgn b / 2\<bar>"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1655
    unfolding \<open>real_of_int \<bar>ai\<bar> = _\<close>[symmetric] using \<open>ai \<noteq> 0\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1656
    by (auto simp: abs_if sgn_if algebra_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1657
  finally show ?thesis .
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1658
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1659
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1660
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1661
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1662
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1663
qualified lemma compute_far_float_plus_down:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1664
  fixes m1 e1 m2 e2 :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1665
    and p :: nat
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1666
  defines "k1 \<equiv> Suc p - nat (bitlen \<bar>m1\<bar>)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1667
  assumes H: "bitlen \<bar>m2\<bar> \<le> e1 - e2 - k1 - 2" "m1 \<noteq> 0" "m2 \<noteq> 0" "e1 \<ge> e2"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1668
  shows "float_plus_down p (Float m1 e1) (Float m2 e2) =
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1669
    float_round_down p (Float (m1 * 2 ^ (Suc (Suc k1)) + sgn m2) (e1 - int k1 - 2))"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1670
proof -
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1671
  let ?a = "real_of_float (Float m1 e1)"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1672
  let ?b = "real_of_float (Float m2 e2)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1673
  let ?sum = "?a + ?b"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1674
  let ?shift = "real_of_int e2 - real_of_int e1 + real k1 + 1"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1675
  let ?m1 = "m1 * 2 ^ Suc k1"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1676
  let ?m2 = "m2 * 2 powr ?shift"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1677
  let ?m2' = "sgn m2 / 2"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1678
  let ?e = "e1 - int k1 - 1"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1679
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1680
  have sum_eq: "?sum = (?m1 + ?m2) * 2 powr ?e"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1681
    by (auto simp flip: powr_add powr_mult powr_realpow simp: powr_mult_base algebra_simps)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1682
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1683
  have "\<bar>?m2\<bar> * 2 < 2 powr (bitlen \<bar>m2\<bar> + ?shift + 1)"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1684
    by (auto simp: field_simps powr_add powr_mult_base powr_diff abs_mult)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1685
  also have "\<dots> \<le> 2 powr 0"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1686
    using H by (intro powr_mono) auto
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1687
  finally have abs_m2_less_half: "\<bar>?m2\<bar> < 1 / 2"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1688
    by simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1689
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1690
  then have "\<bar>real_of_int m2\<bar> < 2 powr -(?shift + 1)"
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
  1691
    unfolding powr_minus_divide by (auto simp: bitlen_alt_def field_simps powr_mult_base abs_mult)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1692
  also have "\<dots> \<le> 2 powr real_of_int (e1 - e2 - 2)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1693
    by simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1694
  finally have b_less_quarter: "\<bar>?b\<bar> < 1/4 * 2 powr real_of_int e1"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1695
    by (simp add: powr_add field_simps powr_diff abs_mult)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1696
  also have "1/4 < \<bar>real_of_int m1\<bar> / 2" using \<open>m1 \<noteq> 0\<close> by simp
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1697
  finally have b_less_half_a: "\<bar>?b\<bar> < 1/2 * \<bar>?a\<bar>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1698
    by (simp add: algebra_simps powr_mult_base abs_mult)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1699
  then have a_half_less_sum: "\<bar>?a\<bar> / 2 < \<bar>?sum\<bar>"
62390
842917225d56 more canonical names
nipkow
parents: 62348
diff changeset
  1700
    by (auto simp: field_simps abs_if split: if_split_asm)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1701
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1702
  from b_less_half_a have "\<bar>?b\<bar> < \<bar>?a\<bar>" "\<bar>?b\<bar> \<le> \<bar>?a\<bar>"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1703
    by simp_all
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1704
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1705
  have "\<bar>real_of_float (Float m1 e1)\<bar> \<ge> 1/4 * 2 powr real_of_int e1"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1706
    using \<open>m1 \<noteq> 0\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1707
    by (auto simp: powr_add powr_int bitlen_nonneg divide_right_mono abs_mult)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1708
  then have "?sum \<noteq> 0" using b_less_quarter
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1709
    by (rule sum_neq_zeroI)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1710
  then have "?m1 + ?m2 \<noteq> 0"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1711
    unfolding sum_eq by (simp add: abs_mult zero_less_mult_iff)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1712
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1713
  have "\<bar>real_of_int ?m1\<bar> \<ge> 2 ^ Suc k1" "\<bar>?m2'\<bar> < 2 ^ Suc k1"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1714
    using \<open>m1 \<noteq> 0\<close> \<open>m2 \<noteq> 0\<close> by (auto simp: sgn_if less_1_mult abs_mult simp del: power.simps)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1715
  then have sum'_nz: "?m1 + ?m2' \<noteq> 0"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1716
    by (intro sum_neq_zeroI)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1717
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1718
  have "\<lfloor>log 2 \<bar>real_of_float (Float m1 e1) + real_of_float (Float m2 e2)\<bar>\<rfloor> = \<lfloor>log 2 \<bar>?m1 + ?m2\<bar>\<rfloor> + ?e"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1719
    using \<open>?m1 + ?m2 \<noteq> 0\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1720
    unfolding floor_add[symmetric] sum_eq
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1721
    by (simp add: abs_mult log_mult) linarith
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1722
  also have "\<lfloor>log 2 \<bar>?m1 + ?m2\<bar>\<rfloor> = \<lfloor>log 2 \<bar>?m1 + sgn (real_of_int m2 * 2 powr ?shift) / 2\<bar>\<rfloor>"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1723
    using abs_m2_less_half \<open>m1 \<noteq> 0\<close>
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1724
    by (intro log2_abs_int_add_less_half_sgn_eq) (auto simp: abs_mult)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1725
  also have "sgn (real_of_int m2 * 2 powr ?shift) = sgn m2"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1726
    by (auto simp: sgn_if zero_less_mult_iff less_not_sym)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1727
  also
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1728
  have "\<bar>?m1 + ?m2'\<bar> * 2 powr ?e = \<bar>?m1 * 2 + sgn m2\<bar> * 2 powr (?e - 1)"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1729
    by (auto simp: field_simps powr_minus[symmetric] powr_diff powr_mult_base)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1730
  then have "\<lfloor>log 2 \<bar>?m1 + ?m2'\<bar>\<rfloor> + ?e = \<lfloor>log 2 \<bar>real_of_float (Float (?m1 * 2 + sgn m2) (?e - 1))\<bar>\<rfloor>"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1731
    using \<open>?m1 + ?m2' \<noteq> 0\<close>
63599
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1732
    unfolding floor_add_int
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1733
    by (simp add: log_add_eq_powr abs_mult_pos del: floor_add2)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1734
  finally
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1735
  have "\<lfloor>log 2 \<bar>?sum\<bar>\<rfloor> = \<lfloor>log 2 \<bar>real_of_float (Float (?m1*2 + sgn m2) (?e - 1))\<bar>\<rfloor>" .
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1736
  then have "plus_down p (Float m1 e1) (Float m2 e2) =
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1737
      truncate_down p (Float (?m1*2 + sgn m2) (?e - 1))"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1738
    unfolding plus_down_def
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1739
  proof (rule truncate_down_log2_eqI)
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1740
    let ?f = "(int p - \<lfloor>log 2 \<bar>real_of_float (Float m1 e1) + real_of_float (Float m2 e2)\<bar>\<rfloor>)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1741
    let ?ai = "m1 * 2 ^ (Suc k1)"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1742
    have "\<lfloor>(?a + ?b) * 2 powr real_of_int ?f\<rfloor> = \<lfloor>(real_of_int (2 * ?ai) + sgn ?b) * 2 powr real_of_int (?f - - ?e - 1)\<rfloor>"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1743
    proof (rule floor_sum_times_2_powr_sgn_eq)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1744
      show "?a * 2 powr real_of_int (-?e) = real_of_int ?ai"
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  1745
        by (simp add: powr_add powr_realpow[symmetric] powr_diff)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1746
      show "\<bar>?b * 2 powr real_of_int (-?e + 1)\<bar> \<le> 1"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1747
        using abs_m2_less_half
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1748
        by (simp add: abs_mult powr_add[symmetric] algebra_simps powr_mult_base)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1749
    next
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1750
      have "e1 + \<lfloor>log 2 \<bar>real_of_int m1\<bar>\<rfloor> - 1 = \<lfloor>log 2 \<bar>?a\<bar>\<rfloor> - 1"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1751
        using \<open>m1 \<noteq> 0\<close>
63599
f560147710fb fixed floor proofs
nipkow
parents: 63596
diff changeset
  1752
        by (simp add: int_add_floor algebra_simps log_mult abs_mult del: floor_add2)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1753
      also have "\<dots> \<le> \<lfloor>log 2 \<bar>?a + ?b\<bar>\<rfloor>"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  1754
        using a_half_less_sum \<open>m1 \<noteq> 0\<close> \<open>?sum \<noteq> 0\<close>
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1755
        unfolding floor_diff_of_int[symmetric]
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1756
        by (auto simp add: log_minus_eq_powr powr_minus_divide intro!: floor_mono)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1757
      finally
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1758
      have "int p - \<lfloor>log 2 \<bar>?a + ?b\<bar>\<rfloor> \<le> p - (bitlen \<bar>m1\<bar>) - e1 + 2"
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
  1759
        by (auto simp: algebra_simps bitlen_alt_def \<open>m1 \<noteq> 0\<close>)
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1760
      also have "\<dots> \<le> - ?e"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1761
        using bitlen_nonneg[of "\<bar>m1\<bar>"] by (simp add: k1_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1762
      finally show "?f \<le> - ?e" by simp
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1763
    qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1764
    also have "sgn ?b = sgn m2"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1765
      using powr_gt_zero[of 2 e2]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1766
      by (auto simp add: sgn_if zero_less_mult_iff simp del: powr_gt_zero)
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1767
    also have "\<lfloor>(real_of_int (2 * ?m1) + real_of_int (sgn m2)) * 2 powr real_of_int (?f - - ?e - 1)\<rfloor> =
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1768
        \<lfloor>Float (?m1 * 2 + sgn m2) (?e - 1) * 2 powr ?f\<rfloor>"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  1769
      by (simp flip: powr_add powr_realpow add: algebra_simps)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1770
    finally
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  1771
    show "\<lfloor>(?a + ?b) * 2 powr ?f\<rfloor> = \<lfloor>real_of_float (Float (?m1 * 2 + sgn m2) (?e - 1)) * 2 powr ?f\<rfloor>" .
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1772
  qed
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1773
  then show ?thesis
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1774
    by transfer (simp add: plus_down_def ac_simps Let_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1775
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1776
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1777
lemma compute_float_plus_down_naive[code]: "float_plus_down p x y = float_round_down p (x + y)"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1778
  by transfer (auto simp: plus_down_def)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1779
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1780
qualified lemma compute_float_plus_down[code]:
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1781
  fixes p::nat and m1 e1 m2 e2::int
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1782
  shows "float_plus_down p (Float m1 e1) (Float m2 e2) =
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1783
    (if m1 = 0 then float_round_down p (Float m2 e2)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1784
    else if m2 = 0 then float_round_down p (Float m1 e1)
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1785
    else
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1786
      (if e1 \<ge> e2 then
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1787
        (let k1 = Suc p - nat (bitlen \<bar>m1\<bar>) in
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1788
          if bitlen \<bar>m2\<bar> > e1 - e2 - k1 - 2
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1789
          then float_round_down p ((Float m1 e1) + (Float m2 e2))
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  1790
          else float_round_down p (Float (m1 * 2 ^ (Suc (Suc k1)) + sgn m2) (e1 - int k1 - 2)))
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1791
    else float_plus_down p (Float m2 e2) (Float m1 e1)))"
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1792
proof -
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1793
  {
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  1794
    assume "bitlen \<bar>m2\<bar> \<le> e1 - e2 - (Suc p - nat (bitlen \<bar>m1\<bar>)) - 2" "m1 \<noteq> 0" "m2 \<noteq> 0" "e1 \<ge> e2"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1795
    note compute_far_float_plus_down[OF this]
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1796
  }
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1797
  then show ?thesis
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1798
    by transfer (simp add: Let_def plus_down_def ac_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1799
qed
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1800
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1801
qualified lemma compute_float_plus_up[code]: "float_plus_up p x y = - float_plus_down p (-x) (-y)"
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1802
  using truncate_down_uminus_eq[of p "x + y"]
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1803
  by transfer (simp add: plus_down_def plus_up_def ac_simps)
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1804
70347
e5cd5471c18a official fact collection sign_simps
haftmann
parents: 69593
diff changeset
  1805
lemma mantissa_zero: "mantissa 0 = 0"
e5cd5471c18a official fact collection sign_simps
haftmann
parents: 69593
diff changeset
  1806
  by (fact mantissa_0)
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1807
62421
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1808
qualified lemma compute_float_less[code]: "a < b \<longleftrightarrow> is_float_pos (float_plus_down 0 b (- a))"
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1809
  using truncate_down[of 0 "b - a"] truncate_down_pos[of "b - a" 0]
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1810
  by transfer (auto simp: plus_down_def)
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1811
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1812
qualified lemma compute_float_le[code]: "a \<le> b \<longleftrightarrow> is_float_nonneg (float_plus_down 0 b (- a))"
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1813
  using truncate_down[of 0 "b - a"] truncate_down_nonneg[of "b - a" 0]
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1814
  by transfer (auto simp: plus_down_def)
28d2c75dd180 finite precision computation to determine sign for comparison
immler
parents: 62420
diff changeset
  1815
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  1816
end
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  1817
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1818
lemma plus_down_mono: "plus_down p a b \<le> plus_down p c d" if "a + b \<le> c + d"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1819
  by (auto simp: plus_down_def intro!: truncate_down_mono that)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1820
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1821
lemma plus_up_mono: "plus_up p a b \<le> plus_up p c d" if "a + b \<le> c + d"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1822
  by (auto simp: plus_up_def intro!: truncate_up_mono that)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1823
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1824
subsection \<open>Approximate Multiplication\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1825
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1826
lemma mult_mono_nonpos_nonneg: "a * b \<le> c * d"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1827
  if  "a \<le> c" "a \<le> 0" "0 \<le> d" "d \<le> b" for a b c d::"'a::ordered_ring"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1828
  by (meson dual_order.trans mult_left_mono_neg mult_right_mono that)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1829
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1830
lemma mult_mono_nonneg_nonpos: "b * a \<le> d * c"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1831
  if  "a \<le> c" "c \<le> 0" "0 \<le> d" "d \<le> b" for a b c d::"'a::ordered_ring"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1832
  by (meson dual_order.trans mult_right_mono_neg mult_left_mono that)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1833
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1834
lemma mult_mono_nonpos_nonpos: "a * b \<le> c * d"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1835
  if  "a \<ge> c" "a \<le> 0" "b \<ge> d" "d \<le> 0" for a b c d::real
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1836
  by (meson dual_order.trans mult_left_mono_neg mult_right_mono_neg that)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1837
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1838
lemma mult_float_mono1:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1839
  shows "a \<le> b \<Longrightarrow> ab \<le> bb \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1840
       aa \<le> a \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1841
       b \<le> ba \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1842
       ac \<le> ab \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1843
       bb \<le> bc \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1844
       plus_down prec (nprt aa * pprt bc)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1845
        (plus_down prec (nprt ba * nprt bc)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1846
          (plus_down prec (pprt aa * pprt ac)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1847
            (pprt ba * nprt ac)))
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1848
       \<le> plus_down prec (nprt a * pprt bb)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1849
           (plus_down prec (nprt b * nprt bb)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1850
             (plus_down prec (pprt a * pprt ab)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1851
               (pprt b * nprt ab)))"
81806
602639414559 Some work on an ancient theory file. And a weird failure in Float.thy
paulson <lp15@cam.ac.uk>
parents: 81805
diff changeset
  1852
  by (smt (verit, best) mult_mono plus_down_mono add_mono nprt_mono nprt_le_zero zero_le_pprt 
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  1853
pprt_mono mult_mono_nonpos_nonneg mult_mono_nonpos_nonpos mult_mono_nonneg_nonpos)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1854
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1855
lemma mult_float_mono2:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1856
  shows "a \<le> b \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1857
       ab \<le> bb \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1858
       aa \<le> a \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1859
       b \<le> ba \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1860
       ac \<le> ab \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1861
       bb \<le> bc \<Longrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1862
       plus_up prec (pprt b * pprt bb)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1863
        (plus_up prec (pprt a * nprt bb)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1864
          (plus_up prec (nprt b * pprt ab)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1865
            (nprt a * nprt ab)))
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1866
       \<le> plus_up prec (pprt ba * pprt bc)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1867
           (plus_up prec (pprt aa * nprt bc)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1868
             (plus_up prec (nprt ba * pprt ac)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1869
               (nprt aa * nprt ac)))"
81806
602639414559 Some work on an ancient theory file. And a weird failure in Float.thy
paulson <lp15@cam.ac.uk>
parents: 81805
diff changeset
  1870
  by (smt (verit, best) plus_up_mono add_mono mult_mono nprt_mono nprt_le_zero zero_le_pprt pprt_mono 
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  1871
      mult_mono_nonpos_nonneg mult_mono_nonpos_nonpos mult_mono_nonneg_nonpos)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1872
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1873
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1874
subsection \<open>Approximate Power\<close>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1875
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1876
lemma div2_less_self[termination_simp]: "odd n \<Longrightarrow> n div 2 < n" for n :: nat
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1877
  by (simp add: odd_pos)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1878
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1879
fun power_down :: "nat \<Rightarrow> real \<Rightarrow> nat \<Rightarrow> real"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1880
where
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1881
  "power_down p x 0 = 1"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1882
| "power_down p x (Suc n) =
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1883
    (if odd n then truncate_down (Suc p) ((power_down p x (Suc n div 2))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1884
     else truncate_down (Suc p) (x * power_down p x n))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1885
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1886
fun power_up :: "nat \<Rightarrow> real \<Rightarrow> nat \<Rightarrow> real"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1887
where
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1888
  "power_up p x 0 = 1"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1889
| "power_up p x (Suc n) =
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1890
    (if odd n then truncate_up p ((power_up p x (Suc n div 2))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1891
     else truncate_up p (x * power_up p x n))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1892
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1893
lift_definition power_up_fl :: "nat \<Rightarrow> float \<Rightarrow> nat \<Rightarrow> float" is power_up
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1894
  by (induct_tac rule: power_up.induct) simp_all
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1895
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1896
lift_definition power_down_fl :: "nat \<Rightarrow> float \<Rightarrow> nat \<Rightarrow> float" is power_down
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1897
  by (induct_tac rule: power_down.induct) simp_all
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1898
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1899
lemma power_float_transfer[transfer_rule]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1900
  "(rel_fun pcr_float (rel_fun (=) pcr_float)) (^) (^)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1901
  unfolding power_def
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1902
  by transfer_prover
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1903
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1904
lemma compute_power_up_fl[code]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1905
    "power_up_fl p x 0 = 1"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1906
    "power_up_fl p x (Suc n) =
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1907
      (if odd n then float_round_up p ((power_up_fl p x (Suc n div 2))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1908
       else float_round_up p (x * power_up_fl p x n))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1909
  and compute_power_down_fl[code]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1910
    "power_down_fl p x 0 = 1"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1911
    "power_down_fl p x (Suc n) =
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1912
      (if odd n then float_round_down (Suc p) ((power_down_fl p x (Suc n div 2))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1913
       else float_round_down (Suc p) (x * power_down_fl p x n))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1914
  unfolding atomize_conj by transfer simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1915
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1916
lemma power_down_pos: "0 < x \<Longrightarrow> 0 < power_down p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1917
  by (induct p x n rule: power_down.induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1918
    (auto simp del: odd_Suc_div_two intro!: truncate_down_pos)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1919
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1920
lemma power_down_nonneg: "0 \<le> x \<Longrightarrow> 0 \<le> power_down p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1921
  by (induct p x n rule: power_down.induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1922
    (auto simp del: odd_Suc_div_two intro!: truncate_down_nonneg mult_nonneg_nonneg)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1923
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1924
lemma power_down: "0 \<le> x \<Longrightarrow> power_down p x n \<le> x ^ n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1925
proof (induct p x n rule: power_down.induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1926
  case (2 p x n)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1927
  have ?case if "odd n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1928
  proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1929
    from that 2 have "(power_down p x (Suc n div 2)) ^ 2 \<le> (x ^ (Suc n div 2)) ^ 2"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1930
      by (auto intro: power_mono power_down_nonneg simp del: odd_Suc_div_two)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1931
    also have "\<dots> = x ^ (Suc n div 2 * 2)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1932
      by (simp flip: power_mult)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1933
    also have "Suc n div 2 * 2 = Suc n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1934
      using \<open>odd n\<close> by presburger
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1935
    finally show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1936
      using that by (auto intro!: truncate_down_le simp del: odd_Suc_div_two)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1937
  qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1938
  then show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1939
    by (auto intro!: truncate_down_le mult_left_mono 2 mult_nonneg_nonneg power_down_nonneg)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1940
qed simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1941
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1942
lemma power_up: "0 \<le> x \<Longrightarrow> x ^ n \<le> power_up p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1943
proof (induct p x n rule: power_up.induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1944
  case (2 p x n)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1945
  have ?case if "odd n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1946
  proof -
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1947
    from that even_Suc have "Suc n = Suc n div 2 * 2"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1948
      by presburger
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1949
    then have "x ^ Suc n \<le> (x ^ (Suc n div 2))\<^sup>2"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1950
      by (simp flip: power_mult)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1951
    also from that 2 have "\<dots> \<le> (power_up p x (Suc n div 2))\<^sup>2"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1952
      by (auto intro: power_mono simp del: odd_Suc_div_two)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1953
    finally show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1954
      using that by (auto intro!: truncate_up_le simp del: odd_Suc_div_two)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1955
  qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1956
  then show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1957
    by (auto intro!: truncate_up_le mult_left_mono 2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1958
qed simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1959
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1960
lemmas power_up_le = order_trans[OF _ power_up]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1961
  and power_up_less = less_le_trans[OF _ power_up]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1962
  and power_down_le = order_trans[OF power_down]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1963
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1964
lemma power_down_fl: "0 \<le> x \<Longrightarrow> power_down_fl p x n \<le> x ^ n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1965
  by transfer (rule power_down)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1966
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1967
lemma power_up_fl: "0 \<le> x \<Longrightarrow> x ^ n \<le> power_up_fl p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1968
  by transfer (rule power_up)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1969
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1970
lemma real_power_up_fl: "real_of_float (power_up_fl p x n) = power_up p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1971
  by transfer simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1972
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1973
lemma real_power_down_fl: "real_of_float (power_down_fl p x n) = power_down p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1974
  by transfer simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1975
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1976
lemmas [simp del] = power_down.simps(2) power_up.simps(2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1977
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1978
lemmas power_down_simp = power_down.simps(2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1979
lemmas power_up_simp = power_up.simps(2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1980
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1981
lemma power_down_even_nonneg: "even n \<Longrightarrow> 0 \<le> power_down p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1982
  by (induct p x n rule: power_down.induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1983
    (auto simp: power_down_simp simp del: odd_Suc_div_two intro!: truncate_down_nonneg )
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1984
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1985
lemma power_down_eq_zero_iff[simp]: "power_down prec b n = 0 \<longleftrightarrow> b = 0 \<and> n \<noteq> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1986
proof (induction n arbitrary: b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1987
  case (less x)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1988
  then show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1989
    using power_down_simp[of _ _ "x - 1"]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1990
    by (cases x) (auto simp add: div2_less_self)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1991
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1992
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1993
lemma power_down_nonneg_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1994
  "power_down prec b n \<ge> 0 \<longleftrightarrow> even n \<or> b \<ge> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1995
proof (induction n arbitrary: b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1996
  case (less x)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1997
  show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1998
    using less(1)[of "x - 1" b] power_down_simp[of _ _ "x - 1"]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  1999
    by (cases x) (auto simp: algebra_split_simps zero_le_mult_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2000
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2001
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2002
lemma power_down_neg_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2003
  "power_down prec b n < 0 \<longleftrightarrow>
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2004
    b < 0 \<and> odd n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2005
  using power_down_nonneg_iff[of prec b n] by (auto simp del: power_down_nonneg_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2006
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2007
lemma power_down_nonpos_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2008
  notes [simp del] = power_down_neg_iff power_down_eq_zero_iff
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2009
  shows "power_down prec b n \<le> 0 \<longleftrightarrow> b < 0 \<and> odd n \<or> b = 0 \<and> n \<noteq> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2010
  using power_down_neg_iff[of prec b n] power_down_eq_zero_iff[of prec b n]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2011
  by auto
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2012
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2013
lemma power_down_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2014
  "power_down prec a n \<le> power_down prec b n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2015
  if "((0 \<le> a \<and> a \<le> b)\<or>(odd n \<and> a \<le> b) \<or> (even n \<and> a \<le> 0 \<and> b \<le> a))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2016
  using that
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2017
proof (induction n arbitrary: a b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2018
  case (less i)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2019
  show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2020
  proof (cases i)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2021
    case j: (Suc j)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2022
    note IH = less[unfolded j even_Suc not_not]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2023
    note [simp del] = power_down.simps
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2024
    show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2025
    proof cases
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2026
      assume [simp]: "even j"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2027
      have "a * power_down prec a j \<le> b * power_down prec b j"
73655
26a1d66b9077 tuned proofs --- avoid z3, which is absent on arm64-linux;
wenzelm
parents: 72607
diff changeset
  2028
        by (metis IH(1) IH(2) \<open>even j\<close> lessI linear mult_mono mult_mono' mult_mono_nonpos_nonneg power_down_even_nonneg)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2029
      then have "truncate_down (Suc prec) (a * power_down prec a j) \<le> truncate_down (Suc prec) (b * power_down prec b j)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2030
        by (auto intro!: truncate_down_mono simp: abs_le_square_iff[symmetric] abs_real_def)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2031
      then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2032
        unfolding j
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2033
        by (simp add: power_down_simp)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2034
    next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2035
      assume [simp]: "odd j"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2036
      have "power_down prec 0 (Suc (j div 2)) \<le> - power_down prec b (Suc (j div 2))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2037
        if "b < 0" "even (j div 2)"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2038
        by (metis even_Suc le_minus_iff Suc_neq_Zero neg_equal_zero power_down_eq_zero_iff
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2039
              power_down_nonpos_iff that)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2040
      then have "truncate_down (Suc prec) ((power_down prec a (Suc (j div 2)))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2041
        \<le> truncate_down (Suc prec) ((power_down prec b (Suc (j div 2)))\<^sup>2)"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2042
        by (smt (verit) IH Suc_less_eq \<open>odd j\<close> div2_less_self mult_mono_nonpos_nonpos 
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2043
            Suc_neq_Zero power2_eq_square power_down_neg_iff power_down_nonpos_iff power_mono truncate_down_mono)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2044
      then show ?thesis
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2045
        unfolding j by (simp add: power_down_simp)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2046
    qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2047
  qed simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2048
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2049
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2050
lemma power_up_even_nonneg: "even n \<Longrightarrow> 0 \<le> power_up p x n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2051
  by (induct p x n rule: power_up.induct)
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2052
    (auto simp: power_up.simps simp del: odd_Suc_div_two)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2053
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2054
lemma power_up_eq_zero_iff[simp]: "power_up prec b n = 0 \<longleftrightarrow> b = 0 \<and> n \<noteq> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2055
proof (induction n arbitrary: b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2056
  case (less x)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2057
  then show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2058
    using power_up_simp[of _ _ "x - 1"]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2059
    by (cases x) (auto simp: algebra_split_simps zero_le_mult_iff div2_less_self)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2060
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2061
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2062
lemma power_up_nonneg_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2063
  "power_up prec b n \<ge> 0 \<longleftrightarrow> even n \<or> b \<ge> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2064
proof (induction n arbitrary: b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2065
  case (less x)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2066
  show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2067
    using less(1)[of "x - 1" b] power_up_simp[of _ _ "x - 1"]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2068
    by (cases x) (auto simp: algebra_split_simps zero_le_mult_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2069
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2070
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2071
lemma power_up_neg_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2072
  "power_up prec b n < 0 \<longleftrightarrow> b < 0 \<and> odd n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2073
  using power_up_nonneg_iff[of prec b n] by (auto simp del: power_up_nonneg_iff)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2074
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2075
lemma power_up_nonpos_iff[simp]:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2076
  notes [simp del] = power_up_neg_iff power_up_eq_zero_iff
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2077
  shows "power_up prec b n \<le> 0 \<longleftrightarrow> b < 0 \<and> odd n \<or> b = 0 \<and> n \<noteq> 0"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2078
  using power_up_neg_iff[of prec b n] power_up_eq_zero_iff[of prec b n]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2079
  by auto
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2080
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2081
lemma power_up_mono:
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2082
  "power_up prec a n \<le> power_up prec b n"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2083
  if "((0 \<le> a \<and> a \<le> b)\<or>(odd n \<and> a \<le> b) \<or> (even n \<and> a \<le> 0 \<and> b \<le> a))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2084
  using that
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2085
proof (induction n arbitrary: a b rule: less_induct)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2086
  case (less i)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2087
  show ?case
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2088
  proof (cases i)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2089
    case j: (Suc j)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2090
    note IH = less[unfolded j even_Suc not_not]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2091
    note [simp del] = power_up.simps
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2092
    show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2093
    proof cases
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2094
      assume [simp]: "even j"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2095
      have "a * power_up prec a j \<le> b * power_up prec b j"
73655
26a1d66b9077 tuned proofs --- avoid z3, which is absent on arm64-linux;
wenzelm
parents: 72607
diff changeset
  2096
        by (metis IH(1) IH(2) \<open>even j\<close> lessI linear mult_mono mult_mono' mult_mono_nonpos_nonneg power_up_even_nonneg)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2097
      then have "truncate_up prec (a * power_up prec a j) \<le> truncate_up prec (b * power_up prec b j)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2098
        by (auto intro!: truncate_up_mono simp: abs_le_square_iff[symmetric] abs_real_def)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2099
      then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2100
        unfolding j
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2101
        by (simp add: power_up_simp)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2102
    next
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2103
      assume [simp]: "odd j"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2104
      have "power_up prec 0 (Suc (j div 2)) \<le> - power_up prec b (Suc (j div 2))"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2105
        if "b < 0" "even (j div 2)"
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
  2106
        by (metis Suc_neq_Zero even_Suc neg_0_le_iff_le power_up_eq_zero_iff power_up_nonpos_iff that)
71036
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2107
      then have "truncate_up prec ((power_up prec a (Suc (j div 2)))\<^sup>2)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2108
        \<le> truncate_up prec ((power_up prec b (Suc (j div 2)))\<^sup>2)"
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2109
        using IH
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2110
        by (auto intro!: truncate_up_mono intro: order_trans[where y=0]
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2111
            simp: abs_le_square_iff[symmetric] abs_real_def
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2112
            div2_less_self)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2113
      then show ?thesis
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2114
        unfolding j
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2115
        by (simp add: power_up_simp)
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2116
    qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2117
  qed simp
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2118
qed
dfcc1882d05a moved theory Interval_Approximation from the AFP
immler
parents: 70817
diff changeset
  2119
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  2120
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  2121
subsection \<open>Lemmas needed by Approximate\<close>
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2122
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2123
lemma Float_num[simp]:
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2124
   "real_of_float (Float 1 0) = 1"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2125
   "real_of_float (Float 1 1) = 2"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2126
   "real_of_float (Float 1 2) = 4"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2127
   "real_of_float (Float 1 (- 1)) = 1/2"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2128
   "real_of_float (Float 1 (- 2)) = 1/4"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2129
   "real_of_float (Float 1 (- 3)) = 1/8"
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2130
   "real_of_float (Float (- 1) 0) = -1"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2131
   "real_of_float (Float (numeral n) 0) = numeral n"
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2132
   "real_of_float (Float (- numeral n) 0) = - numeral n"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2133
  using two_powr_int_float[of 2] two_powr_int_float[of "-1"] two_powr_int_float[of "-2"]
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2134
    two_powr_int_float[of "-3"]
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2135
  using powr_realpow[of 2 2] powr_realpow[of 2 3]
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65109
diff changeset
  2136
  using powr_minus[of "2::real" 1] powr_minus[of "2::real" 2] powr_minus[of "2::real" 3]
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2137
  by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2138
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2139
lemma real_of_Float_int[simp]: "real_of_float (Float n 0) = real n"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2140
  by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2141
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2142
lemma float_zero[simp]: "real_of_float (Float 0 e) = 0"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2143
  by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2144
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61942
diff changeset
  2145
lemma abs_div_2_less: "a \<noteq> 0 \<Longrightarrow> a \<noteq> -1 \<Longrightarrow> \<bar>(a::int) div 2\<bar> < \<bar>a\<bar>"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2146
  by arith
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2147
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2148
lemma lapprox_rat: "real_of_float (lapprox_rat prec x y) \<le> real_of_int x / real_of_int y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2149
  by (simp add: lapprox_rat.rep_eq truncate_down)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2150
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2151
lemma mult_div_le:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2152
  fixes a b :: int
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2153
  assumes "b > 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2154
  shows "a \<ge> b * (a div b)"
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2155
  by (smt (verit, ccfv_threshold) assms minus_div_mult_eq_mod mod_int_pos_iff mult.commute)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2156
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2157
lemma lapprox_rat_nonneg:
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  2158
  assumes "0 \<le> x" and "0 \<le> y"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2159
  shows "0 \<le> real_of_float (lapprox_rat n x y)"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2160
  using assms
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2161
  by transfer (simp add: truncate_down_nonneg)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2162
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2163
lemma rapprox_rat: "real_of_int x / real_of_int y \<le> real_of_float (rapprox_rat prec x y)"
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  2164
  by (simp add: rapprox_rat.rep_eq truncate_up)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2165
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2166
lemma rapprox_rat_le1:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2167
  assumes "0 \<le> x" "0 < y" "x \<le> y"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2168
  shows "real_of_float (rapprox_rat n x y) \<le> 1"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2169
  using assms
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2170
  by transfer (simp add: truncate_up_le1)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2171
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2172
lemma rapprox_rat_nonneg_nonpos: "0 \<le> x \<Longrightarrow> y \<le> 0 \<Longrightarrow> real_of_float (rapprox_rat n x y) \<le> 0"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2173
  by transfer (simp add: truncate_up_nonpos divide_nonneg_nonpos)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2174
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2175
lemma rapprox_rat_nonpos_nonneg: "x \<le> 0 \<Longrightarrow> 0 \<le> y \<Longrightarrow> real_of_float (rapprox_rat n x y) \<le> 0"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2176
  by transfer (simp add: truncate_up_nonpos divide_nonpos_nonneg)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2177
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2178
lemma real_divl: "real_divl prec x y \<le> x / y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2179
  by (simp add: real_divl_def truncate_down)
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2180
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2181
lemma real_divr: "x / y \<le> real_divr prec x y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2182
  by (simp add: real_divr_def truncate_up)
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2183
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2184
lemma float_divl: "real_of_float (float_divl prec x y) \<le> x / y"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2185
  by transfer (rule real_divl)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2186
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2187
lemma real_divl_lower_bound: "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> 0 \<le> real_divl prec x y"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2188
  by (simp add: real_divl_def truncate_down_nonneg)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2189
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2190
lemma float_divl_lower_bound: "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> 0 \<le> real_of_float (float_divl prec x y)"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2191
  by transfer (rule real_divl_lower_bound)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2192
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2193
lemma exponent_1: "exponent 1 = 0"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2194
  using exponent_float[of 1 0] by (simp add: one_float_def)
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2195
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2196
lemma mantissa_1: "mantissa 1 = 1"
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2197
  using mantissa_float[of 1 0] by (simp add: one_float_def)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2198
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2199
lemma bitlen_1: "bitlen 1 = 1"
63248
414e3550e9c0 generalized bitlen to floor of log
immler
parents: 63040
diff changeset
  2200
  by (simp add: bitlen_alt_def)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2201
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2202
lemma float_upper_bound: "x \<le> 2 powr (bitlen \<bar>mantissa x\<bar> + exponent x)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2203
proof (cases "x = 0")
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2204
  case True
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2205
  then show ?thesis by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2206
next
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2207
  case False
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2208
  then have "mantissa x \<noteq> 0"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2209
    using mantissa_eq_zero_iff by auto
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2210
  have "x = mantissa x * 2 powr (exponent x)"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2211
    by (rule mantissa_exponent)
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2212
  also have "mantissa x \<le> \<bar>mantissa x\<bar>"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2213
    by simp
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2214
  also have "\<dots> \<le> 2 powr (bitlen \<bar>mantissa x\<bar>)"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60376
diff changeset
  2215
    using bitlen_bounds[of "\<bar>mantissa x\<bar>"] bitlen_nonneg \<open>mantissa x \<noteq> 0\<close>
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61639
diff changeset
  2216
    by (auto simp del: of_int_abs simp add: powr_int)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2217
  finally show ?thesis by (simp add: powr_add)
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2218
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2219
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2220
lemma real_divl_pos_less1_bound:
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2221
  assumes "0 < x" "x \<le> 1"
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  2222
  shows "1 \<le> real_divl prec 1 x"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2223
  using assms
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2224
  by (auto intro!: truncate_down_ge1 simp: real_divl_def)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2225
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2226
lemma float_divl_pos_less1_bound:
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2227
  "0 < real_of_float x \<Longrightarrow> real_of_float x \<le> 1 \<Longrightarrow> prec \<ge> 1 \<Longrightarrow>
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2228
    1 \<le> real_of_float (float_divl prec 1 x)"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2229
  by transfer (rule real_divl_pos_less1_bound)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2230
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2231
lemma float_divr: "real_of_float x / real_of_float y \<le> real_of_float (float_divr prec x y)"
81805
1655c4a3516b simplified old proofs
paulson <lp15@cam.ac.uk>
parents: 80790
diff changeset
  2232
  by (simp add: float_divr.rep_eq real_divr)
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2233
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2234
lemma real_divr_pos_less1_lower_bound:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2235
  assumes "0 < x"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2236
    and "x \<le> 1"
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2237
  shows "1 \<le> real_divr prec 1 x"
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2238
proof -
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2239
  have "1 \<le> 1 / x"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2240
    using \<open>0 < x\<close> and \<open>x \<le> 1\<close> by auto
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2241
  also have "\<dots> \<le> real_divr prec 1 x"
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2242
    using real_divr[where x = 1 and y = x] by auto
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  2243
  finally show ?thesis by auto
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2244
qed
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2245
58982
27e7e3f9e665 simplified computations based on round_up by reducing to round_down;
immler
parents: 58881
diff changeset
  2246
lemma float_divr_pos_less1_lower_bound: "0 < x \<Longrightarrow> x \<le> 1 \<Longrightarrow> 1 \<le> float_divr prec 1 x"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2247
  by transfer (rule real_divr_pos_less1_lower_bound)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2248
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2249
lemma real_divr_nonpos_pos_upper_bound: "x \<le> 0 \<Longrightarrow> 0 \<le> y \<Longrightarrow> real_divr prec x y \<le> 0"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2250
  by (simp add: real_divr_def truncate_up_nonpos divide_le_0_iff)
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2251
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2252
lemma float_divr_nonpos_pos_upper_bound:
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2253
  "real_of_float x \<le> 0 \<Longrightarrow> 0 \<le> real_of_float y \<Longrightarrow> real_of_float (float_divr prec x y) \<le> 0"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2254
  by transfer (rule real_divr_nonpos_pos_upper_bound)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2255
63356
77332fed33c3 misc tuning and modernization;
wenzelm
parents: 63248
diff changeset
  2256
lemma real_divr_nonneg_neg_upper_bound: "0 \<le> x \<Longrightarrow> y \<le> 0 \<Longrightarrow> real_divr prec x y \<le> 0"
62420
c7666166c24e positive precision for truncate; fixed precision for approximation of rationals; code for truncate
immler
parents: 62419
diff changeset
  2257
  by (simp add: real_divr_def truncate_up_nonpos divide_le_0_iff)
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2258
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2259
lemma float_divr_nonneg_neg_upper_bound:
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2260
  "0 \<le> real_of_float x \<Longrightarrow> real_of_float y \<le> 0 \<Longrightarrow> real_of_float (float_divr prec x y) \<le> 0"
54782
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2261
  by transfer (rule real_divr_nonneg_neg_upper_bound)
cd8f55c358c5 additional definitions and lemmas for Float
immler
parents: 54489
diff changeset
  2262
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2263
lemma Float_le_zero_iff: "Float a b \<le> 0 \<longleftrightarrow> a \<le> 0"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2264
  by (auto simp: zero_float_def mult_le_0_iff)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2265
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2266
lemma real_of_float_pprt[simp]:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2267
  fixes a :: float
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2268
  shows "real_of_float (pprt a) = pprt (real_of_float a)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  2269
  unfolding pprt_def sup_float_def max_def sup_real_def by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2270
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2271
lemma real_of_float_nprt[simp]:
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2272
  fixes a :: float
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2273
  shows "real_of_float (nprt a) = nprt (real_of_float a)"
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  2274
  unfolding nprt_def inf_float_def min_def inf_real_def by auto
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2275
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2276
context
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2277
begin
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2278
55565
f663fc1e653b simplify proofs because of the stronger reflexivity prover
kuncar
parents: 54784
diff changeset
  2279
lift_definition int_floor_fl :: "float \<Rightarrow> int" is floor .
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2280
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2281
qualified lemma compute_int_floor_fl[code]:
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
  2282
  "int_floor_fl (Float m e) = (if 0 \<le> e then m * 2 ^ nat e else m div (2 ^ (nat (-e))))"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2283
  apply transfer
76796
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2284
  by (smt (verit, ccfv_threshold) Float.rep_eq compute_real_of_float floor_divide_of_int_eq 
454984e807db Tidied some messy proofs
paulson <lp15@cam.ac.uk>
parents: 73932
diff changeset
  2285
      floor_of_int of_int_1 of_int_add of_int_mult of_int_power)
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2286
61942
f02b26f7d39d prefer symbols for "floor", "ceiling";
wenzelm
parents: 61799
diff changeset
  2287
lift_definition floor_fl :: "float \<Rightarrow> float" is "\<lambda>x. real_of_int \<lfloor>x\<rfloor>"
f02b26f7d39d prefer symbols for "floor", "ceiling";
wenzelm
parents: 61799
diff changeset
  2288
  by simp
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2289
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2290
qualified lemma compute_floor_fl[code]:
47601
050718fe6eee use real :: float => real as lifting-morphism so we can directlry use the rep_eq theorems
hoelzl
parents: 47600
diff changeset
  2291
  "floor_fl (Float m e) = (if 0 \<le> e then Float m e else Float (m div (2 ^ (nat (-e)))) 0)"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2292
  apply transfer
80790
07c51801c2ea More tidying of old proofs
paulson <lp15@cam.ac.uk>
parents: 80732
diff changeset
  2293
  using compute_int_floor_fl int_floor_fl.rep_eq powr_int by auto
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2294
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2295
end
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2296
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2297
lemma floor_fl: "real_of_float (floor_fl x) \<le> real_of_float x"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2298
  by transfer simp
47600
e12289b5796b use lifting to introduce floating point numbers
hoelzl
parents: 47599
diff changeset
  2299
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2300
lemma int_floor_fl: "real_of_int (int_floor_fl x) \<le> real_of_float x"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2301
  by transfer simp
29804
e15b74577368 Added new Float theory and moved old Library/Float.thy to ComputeFloat
hoelzl
parents: 29667
diff changeset
  2302
47599
400b158f1589 replace the float datatype by a type with unique representation
hoelzl
parents: 47230
diff changeset
  2303
lemma floor_pos_exp: "exponent (floor_fl x) \<ge> 0"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2304
proof (cases "floor_fl x = 0")
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  2305
  case True
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2306
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2307
    by (simp add: floor_fl_def)
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  2308
next
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  2309
  case False
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2310
  have eq: "floor_fl x = Float \<lfloor>real_of_float x\<rfloor> 0"
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2311
    by transfer simp
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 60868
diff changeset
  2312
  obtain i where "\<lfloor>real_of_float x\<rfloor> = mantissa (floor_fl x) * 2 ^ i" "0 = exponent (floor_fl x) - int i"
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2313
    by (rule denormalize_shift[OF eq False])
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2314
  then show ?thesis
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2315
    by simp
53381
355a4cac5440 tuned proofs -- less guessing;
wenzelm
parents: 53215
diff changeset
  2316
qed
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2317
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  2318
lemma compute_mantissa[code]:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2319
  "mantissa (Float m e) =
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2320
    (if m = 0 then 0 else if 2 dvd m then mantissa (normfloat (Float m e)) else m)"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  2321
  by (auto simp: mantissa_float Float.abs_eq simp flip: zero_float_def)
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  2322
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  2323
lemma compute_exponent[code]:
60698
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2324
  "exponent (Float m e) =
29e8bdc41f90 tuned proofs;
wenzelm
parents: 60679
diff changeset
  2325
    (if m = 0 then 0 else if 2 dvd m then exponent (normfloat (Float m e)) else e)"
68406
6beb45f6cf67 utilize 'flip'
nipkow
parents: 67573
diff changeset
  2326
  by (auto simp: exponent_float Float.abs_eq simp flip: zero_float_def)
67573
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2327
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2328
lifting_update Float.float.lifting
ed0a7090167d added lemmas, avoid 'float_of 0'
immler
parents: 67399
diff changeset
  2329
lifting_forget Float.float.lifting
58985
bf498e0af9e3 truncate intermediate results in horner to improve performance of approximate;
immler
parents: 58982
diff changeset
  2330
16782
b214f21ae396 - use TableFun instead of homebrew binary tree in am_interpreter.ML
obua
parents:
diff changeset
  2331
end