| author | wenzelm | 
| Fri, 07 Mar 2014 20:32:48 +0100 | |
| changeset 55986 | 61b0021ed674 | 
| parent 55183 | 17ec4a29ef71 | 
| child 56536 | aefb4a8da31f | 
| permissions | -rw-r--r-- | 
| 43197 | 1 | (* Title: HOL/Metis_Examples/Big_O.thy | 
| 2 | Author: Lawrence C. Paulson, Cambridge University Computer Laboratory | |
| 41144 | 3 | Author: Jasmin Blanchette, TU Muenchen | 
| 23449 | 4 | |
| 43197 | 5 | Metis example featuring the Big O notation. | 
| 23449 | 6 | *) | 
| 7 | ||
| 43197 | 8 | header {* Metis Example Featuring the Big O Notation *}
 | 
| 23449 | 9 | |
| 43197 | 10 | theory Big_O | 
| 41413 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
41144diff
changeset | 11 | imports | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
41144diff
changeset | 12 | "~~/src/HOL/Decision_Procs/Dense_Linear_Order" | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
41144diff
changeset | 13 | "~~/src/HOL/Library/Function_Algebras" | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
41144diff
changeset | 14 | "~~/src/HOL/Library/Set_Algebras" | 
| 23449 | 15 | begin | 
| 16 | ||
| 17 | subsection {* Definitions *}
 | |
| 18 | ||
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 19 | definition bigo :: "('a => 'b\<Colon>linordered_idom) => ('a => 'b) set" ("(1O'(_'))") where
 | 
| 45575 | 20 |   "O(f\<Colon>('a => 'b)) == {h. \<exists>c. \<forall>x. abs (h x) <= c * abs (f x)}"
 | 
| 23449 | 21 | |
| 45575 | 22 | lemma bigo_pos_const: | 
| 46364 | 23 | "(\<exists>c\<Colon>'a\<Colon>linordered_idom. | 
| 24 | \<forall>x. abs (h x) \<le> c * abs (f x)) | |
| 25 | \<longleftrightarrow> (\<exists>c. 0 < c \<and> (\<forall>x. abs(h x) \<le> c * abs (f x)))" | |
| 26 | by (metis (no_types) abs_ge_zero | |
| 45575 | 27 | comm_semiring_1_class.normalizing_semiring_rules(7) mult.comm_neutral | 
| 28 | mult_nonpos_nonneg not_leE order_trans zero_less_one) | |
| 23449 | 29 | |
| 36407 | 30 | (*** Now various verions with an increasing shrink factor ***) | 
| 23449 | 31 | |
| 55183 
17ec4a29ef71
renamed Sledgehammer options for symmetry between positive and negative versions
 blanchet parents: 
54863diff
changeset | 32 | sledgehammer_params [isar_proofs, compress_isar = 1] | 
| 23449 | 33 | |
| 45575 | 34 | lemma | 
| 46364 | 35 | "(\<exists>c\<Colon>'a\<Colon>linordered_idom. | 
| 36 | \<forall>x. abs (h x) \<le> c * abs (f x)) | |
| 37 | \<longleftrightarrow> (\<exists>c. 0 < c \<and> (\<forall>x. abs(h x) \<le> c * abs (f x)))" | |
| 23449 | 38 | apply auto | 
| 39 | apply (case_tac "c = 0", simp) | |
| 40 | apply (rule_tac x = "1" in exI, simp) | |
| 41 | apply (rule_tac x = "abs c" in exI, auto) | |
| 36561 | 42 | proof - | 
| 43 | fix c :: 'a and x :: 'b | |
| 44 | assume A1: "\<forall>x. \<bar>h x\<bar> \<le> c * \<bar>f x\<bar>" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 45 | have F1: "\<forall>x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 0 \<le> \<bar>x\<^sub>1\<bar>" by (metis abs_ge_zero) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 46 | have F2: "\<forall>x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 1 * x\<^sub>1 = x\<^sub>1" by (metis mult_1) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 47 | have F3: "\<forall>x\<^sub>1 x\<^sub>3. x\<^sub>3 \<le> \<bar>h x\<^sub>1\<bar> \<longrightarrow> x\<^sub>3 \<le> c * \<bar>f x\<^sub>1\<bar>" by (metis A1 order_trans) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 48 | have F4: "\<forall>x\<^sub>2 x\<^sub>3\<Colon>'a\<Colon>linordered_idom. \<bar>x\<^sub>3\<bar> * \<bar>x\<^sub>2\<bar> = \<bar>x\<^sub>3 * x\<^sub>2\<bar>" | 
| 36561 | 49 | by (metis abs_mult) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 50 | have F5: "\<forall>x\<^sub>3 x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 0 \<le> x\<^sub>1 \<longrightarrow> \<bar>x\<^sub>3 * x\<^sub>1\<bar> = \<bar>x\<^sub>3\<bar> * x\<^sub>1" | 
| 36561 | 51 | by (metis abs_mult_pos) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 52 | hence "\<forall>x\<^sub>1\<ge>0. \<bar>x\<^sub>1\<Colon>'a\<Colon>linordered_idom\<bar> = \<bar>1\<bar> * x\<^sub>1" by (metis F2) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 53 | hence "\<forall>x\<^sub>1\<ge>0. \<bar>x\<^sub>1\<Colon>'a\<Colon>linordered_idom\<bar> = x\<^sub>1" by (metis F2 abs_one) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 54 | hence "\<forall>x\<^sub>3. 0 \<le> \<bar>h x\<^sub>3\<bar> \<longrightarrow> \<bar>c * \<bar>f x\<^sub>3\<bar>\<bar> = c * \<bar>f x\<^sub>3\<bar>" by (metis F3) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 55 | hence "\<forall>x\<^sub>3. \<bar>c * \<bar>f x\<^sub>3\<bar>\<bar> = c * \<bar>f x\<^sub>3\<bar>" by (metis F1) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 56 | hence "\<forall>x\<^sub>3. (0\<Colon>'a) \<le> \<bar>f x\<^sub>3\<bar> \<longrightarrow> c * \<bar>f x\<^sub>3\<bar> = \<bar>c\<bar> * \<bar>f x\<^sub>3\<bar>" by (metis F5) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 57 | hence "\<forall>x\<^sub>3. (0\<Colon>'a) \<le> \<bar>f x\<^sub>3\<bar> \<longrightarrow> c * \<bar>f x\<^sub>3\<bar> = \<bar>c * f x\<^sub>3\<bar>" by (metis F4) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 58 | hence "\<forall>x\<^sub>3. c * \<bar>f x\<^sub>3\<bar> = \<bar>c * f x\<^sub>3\<bar>" by (metis F1) | 
| 36561 | 59 | hence "\<bar>h x\<bar> \<le> \<bar>c * f x\<bar>" by (metis A1) | 
| 60 | thus "\<bar>h x\<bar> \<le> \<bar>c\<bar> * \<bar>f x\<bar>" by (metis F4) | |
| 23449 | 61 | qed | 
| 62 | ||
| 55183 
17ec4a29ef71
renamed Sledgehammer options for symmetry between positive and negative versions
 blanchet parents: 
54863diff
changeset | 63 | sledgehammer_params [isar_proofs, compress_isar = 2] | 
| 25710 
4cdf7de81e1b
Replaced refs by config params; finer critical section in mets method
 paulson parents: 
25592diff
changeset | 64 | |
| 45575 | 65 | lemma | 
| 46364 | 66 | "(\<exists>c\<Colon>'a\<Colon>linordered_idom. | 
| 67 | \<forall>x. abs (h x) \<le> c * abs (f x)) | |
| 68 | \<longleftrightarrow> (\<exists>c. 0 < c \<and> (\<forall>x. abs(h x) \<le> c * abs (f x)))" | |
| 23449 | 69 | apply auto | 
| 70 | apply (case_tac "c = 0", simp) | |
| 71 | apply (rule_tac x = "1" in exI, simp) | |
| 36844 | 72 | apply (rule_tac x = "abs c" in exI, auto) | 
| 36561 | 73 | proof - | 
| 74 | fix c :: 'a and x :: 'b | |
| 75 | assume A1: "\<forall>x. \<bar>h x\<bar> \<le> c * \<bar>f x\<bar>" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 76 | have F1: "\<forall>x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 1 * x\<^sub>1 = x\<^sub>1" by (metis mult_1) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 77 | have F2: "\<forall>x\<^sub>2 x\<^sub>3\<Colon>'a\<Colon>linordered_idom. \<bar>x\<^sub>3\<bar> * \<bar>x\<^sub>2\<bar> = \<bar>x\<^sub>3 * x\<^sub>2\<bar>" | 
| 36561 | 78 | by (metis abs_mult) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 79 | have "\<forall>x\<^sub>1\<ge>0. \<bar>x\<^sub>1\<Colon>'a\<Colon>linordered_idom\<bar> = x\<^sub>1" by (metis F1 abs_mult_pos abs_one) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 80 | hence "\<forall>x\<^sub>3. \<bar>c * \<bar>f x\<^sub>3\<bar>\<bar> = c * \<bar>f x\<^sub>3\<bar>" by (metis A1 abs_ge_zero order_trans) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 81 | hence "\<forall>x\<^sub>3. 0 \<le> \<bar>f x\<^sub>3\<bar> \<longrightarrow> c * \<bar>f x\<^sub>3\<bar> = \<bar>c * f x\<^sub>3\<bar>" by (metis F2 abs_mult_pos) | 
| 36561 | 82 | hence "\<bar>h x\<bar> \<le> \<bar>c * f x\<bar>" by (metis A1 abs_ge_zero) | 
| 83 | thus "\<bar>h x\<bar> \<le> \<bar>c\<bar> * \<bar>f x\<bar>" by (metis F2) | |
| 23449 | 84 | qed | 
| 85 | ||
| 55183 
17ec4a29ef71
renamed Sledgehammer options for symmetry between positive and negative versions
 blanchet parents: 
54863diff
changeset | 86 | sledgehammer_params [isar_proofs, compress_isar = 3] | 
| 25710 
4cdf7de81e1b
Replaced refs by config params; finer critical section in mets method
 paulson parents: 
25592diff
changeset | 87 | |
| 45575 | 88 | lemma | 
| 46364 | 89 | "(\<exists>c\<Colon>'a\<Colon>linordered_idom. | 
| 90 | \<forall>x. abs (h x) \<le> c * abs (f x)) | |
| 91 | \<longleftrightarrow> (\<exists>c. 0 < c \<and> (\<forall>x. abs(h x) \<le> c * abs (f x)))" | |
| 23449 | 92 | apply auto | 
| 93 | apply (case_tac "c = 0", simp) | |
| 94 | apply (rule_tac x = "1" in exI, simp) | |
| 36561 | 95 | apply (rule_tac x = "abs c" in exI, auto) | 
| 96 | proof - | |
| 97 | fix c :: 'a and x :: 'b | |
| 98 | assume A1: "\<forall>x. \<bar>h x\<bar> \<le> c * \<bar>f x\<bar>" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 99 | have F1: "\<forall>x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 1 * x\<^sub>1 = x\<^sub>1" by (metis mult_1) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 100 | have F2: "\<forall>x\<^sub>3 x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 0 \<le> x\<^sub>1 \<longrightarrow> \<bar>x\<^sub>3 * x\<^sub>1\<bar> = \<bar>x\<^sub>3\<bar> * x\<^sub>1" by (metis abs_mult_pos) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 101 | hence "\<forall>x\<^sub>1\<ge>0. \<bar>x\<^sub>1\<Colon>'a\<Colon>linordered_idom\<bar> = x\<^sub>1" by (metis F1 abs_one) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 102 | hence "\<forall>x\<^sub>3. 0 \<le> \<bar>f x\<^sub>3\<bar> \<longrightarrow> c * \<bar>f x\<^sub>3\<bar> = \<bar>c\<bar> * \<bar>f x\<^sub>3\<bar>" by (metis F2 A1 abs_ge_zero order_trans) | 
| 46644 | 103 | thus "\<bar>h x\<bar> \<le> \<bar>c\<bar> * \<bar>f x\<bar>" by (metis A1 abs_ge_zero) | 
| 23449 | 104 | qed | 
| 105 | ||
| 55183 
17ec4a29ef71
renamed Sledgehammer options for symmetry between positive and negative versions
 blanchet parents: 
54863diff
changeset | 106 | sledgehammer_params [isar_proofs, compress_isar = 4] | 
| 24545 | 107 | |
| 45575 | 108 | lemma | 
| 46364 | 109 | "(\<exists>c\<Colon>'a\<Colon>linordered_idom. | 
| 110 | \<forall>x. abs (h x) \<le> c * abs (f x)) | |
| 111 | \<longleftrightarrow> (\<exists>c. 0 < c \<and> (\<forall>x. abs(h x) \<le> c * abs (f x)))" | |
| 24545 | 112 | apply auto | 
| 113 | apply (case_tac "c = 0", simp) | |
| 114 | apply (rule_tac x = "1" in exI, simp) | |
| 36561 | 115 | apply (rule_tac x = "abs c" in exI, auto) | 
| 116 | proof - | |
| 117 | fix c :: 'a and x :: 'b | |
| 118 | assume A1: "\<forall>x. \<bar>h x\<bar> \<le> c * \<bar>f x\<bar>" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 119 | have "\<forall>x\<^sub>1\<Colon>'a\<Colon>linordered_idom. 1 * x\<^sub>1 = x\<^sub>1" by (metis mult_1) | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 120 | hence "\<forall>x\<^sub>3. \<bar>c * \<bar>f x\<^sub>3\<bar>\<bar> = c * \<bar>f x\<^sub>3\<bar>" | 
| 36561 | 121 | by (metis A1 abs_ge_zero order_trans abs_mult_pos abs_one) | 
| 122 | hence "\<bar>h x\<bar> \<le> \<bar>c * f x\<bar>" by (metis A1 abs_ge_zero abs_mult_pos abs_mult) | |
| 123 | thus "\<bar>h x\<bar> \<le> \<bar>c\<bar> * \<bar>f x\<bar>" by (metis abs_mult) | |
| 24545 | 124 | qed | 
| 125 | ||
| 55183 
17ec4a29ef71
renamed Sledgehammer options for symmetry between positive and negative versions
 blanchet parents: 
54863diff
changeset | 126 | sledgehammer_params [isar_proofs, compress_isar = 1] | 
| 24545 | 127 | |
| 46364 | 128 | lemma bigo_alt_def: "O(f) = {h. \<exists>c. (0 < c \<and> (\<forall>x. abs (h x) <= c * abs (f x)))}"
 | 
| 23449 | 129 | by (auto simp add: bigo_def bigo_pos_const) | 
| 130 | ||
| 46364 | 131 | lemma bigo_elt_subset [intro]: "f : O(g) \<Longrightarrow> O(f) \<le> O(g)" | 
| 45575 | 132 | apply (auto simp add: bigo_alt_def) | 
| 133 | apply (rule_tac x = "ca * c" in exI) | |
| 46364 | 134 | by (metis comm_semiring_1_class.normalizing_semiring_rules(7,19) | 
| 135 | mult_le_cancel_left_pos order_trans mult_pos_pos) | |
| 23449 | 136 | |
| 137 | lemma bigo_refl [intro]: "f : O(f)" | |
| 46364 | 138 | unfolding bigo_def mem_Collect_eq | 
| 36844 | 139 | by (metis mult_1 order_refl) | 
| 23449 | 140 | |
| 141 | lemma bigo_zero: "0 : O(g)" | |
| 36561 | 142 | apply (auto simp add: bigo_def func_zero) | 
| 36844 | 143 | by (metis mult_zero_left order_refl) | 
| 23449 | 144 | |
| 45575 | 145 | lemma bigo_zero2: "O(\<lambda>x. 0) = {\<lambda>x. 0}"
 | 
| 146 | by (auto simp add: bigo_def) | |
| 23449 | 147 | |
| 43197 | 148 | lemma bigo_plus_self_subset [intro]: | 
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 149 | "O(f) + O(f) <= O(f)" | 
| 45575 | 150 | apply (auto simp add: bigo_alt_def set_plus_def) | 
| 151 | apply (rule_tac x = "c + ca" in exI) | |
| 152 | apply auto | |
| 153 | apply (simp add: ring_distribs func_plus) | |
| 154 | by (metis order_trans abs_triangle_ineq add_mono) | |
| 23449 | 155 | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 156 | lemma bigo_plus_idemp [simp]: "O(f) + O(f) = O(f)" | 
| 45575 | 157 | by (metis bigo_plus_self_subset bigo_zero set_eq_subset set_zero_plus2) | 
| 23449 | 158 | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 159 | lemma bigo_plus_subset [intro]: "O(f + g) <= O(f) + O(g)" | 
| 45575 | 160 | apply (rule subsetI) | 
| 161 | apply (auto simp add: bigo_def bigo_pos_const func_plus set_plus_def) | |
| 162 | apply (subst bigo_pos_const [symmetric])+ | |
| 163 | apply (rule_tac x = "\<lambda>n. if abs (g n) <= (abs (f n)) then x n else 0" in exI) | |
| 164 | apply (rule conjI) | |
| 165 | apply (rule_tac x = "c + c" in exI) | |
| 166 | apply clarsimp | |
| 167 | apply auto | |
| 23449 | 168 | apply (subgoal_tac "c * abs (f xa + g xa) <= (c + c) * abs (f xa)") | 
| 45575 | 169 | apply (metis mult_2 order_trans) | 
| 23449 | 170 | apply (subgoal_tac "c * abs (f xa + g xa) <= c * (abs (f xa) + abs (g xa))") | 
| 45575 | 171 | apply (erule order_trans) | 
| 172 | apply (simp add: ring_distribs) | |
| 23449 | 173 | apply (rule mult_left_mono) | 
| 45575 | 174 | apply (simp add: abs_triangle_ineq) | 
| 23449 | 175 | apply (simp add: order_less_le) | 
| 45575 | 176 | apply (rule mult_nonneg_nonneg) | 
| 23449 | 177 | apply auto | 
| 45575 | 178 | apply (rule_tac x = "\<lambda>n. if (abs (f n)) < abs (g n) then x n else 0" in exI) | 
| 179 | apply (rule conjI) | |
| 180 | apply (rule_tac x = "c + c" in exI) | |
| 181 | apply auto | |
| 182 | apply (subgoal_tac "c * abs (f xa + g xa) <= (c + c) * abs (g xa)") | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 183 | apply (metis order_trans mult_2) | 
| 45575 | 184 | apply (subgoal_tac "c * abs (f xa + g xa) <= c * (abs (f xa) + abs (g xa))") | 
| 23449 | 185 | apply (erule order_trans) | 
| 23477 
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
 nipkow parents: 
23464diff
changeset | 186 | apply (simp add: ring_distribs) | 
| 45575 | 187 | apply (metis abs_triangle_ineq mult_le_cancel_left_pos) | 
| 188 | by (metis abs_ge_zero abs_of_pos zero_le_mult_iff) | |
| 23449 | 189 | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 190 | lemma bigo_plus_subset2 [intro]: "A <= O(f) \<Longrightarrow> B <= O(f) \<Longrightarrow> A + B <= O(f)" | 
| 45575 | 191 | by (metis bigo_plus_idemp set_plus_mono2) | 
| 23449 | 192 | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 193 | lemma bigo_plus_eq: "\<forall>x. 0 <= f x \<Longrightarrow> \<forall>x. 0 <= g x \<Longrightarrow> O(f + g) = O(f) + O(g)" | 
| 45575 | 194 | apply (rule equalityI) | 
| 195 | apply (rule bigo_plus_subset) | |
| 196 | apply (simp add: bigo_alt_def set_plus_def func_plus) | |
| 197 | apply clarify | |
| 198 | (* sledgehammer *) | |
| 199 | apply (rule_tac x = "max c ca" in exI) | |
| 46369 | 200 | |
| 45575 | 201 | apply (rule conjI) | 
| 202 | apply (metis less_max_iff_disj) | |
| 203 | apply clarify | |
| 204 | apply (drule_tac x = "xa" in spec)+ | |
| 205 | apply (subgoal_tac "0 <= f xa + g xa") | |
| 206 | apply (simp add: ring_distribs) | |
| 207 | apply (subgoal_tac "abs (a xa + b xa) <= abs (a xa) + abs (b xa)") | |
| 208 | apply (subgoal_tac "abs (a xa) + abs (b xa) <= | |
| 209 | max c ca * f xa + max c ca * g xa") | |
| 210 | apply (metis order_trans) | |
| 23449 | 211 | defer 1 | 
| 45575 | 212 | apply (metis abs_triangle_ineq) | 
| 213 | apply (metis add_nonneg_nonneg) | |
| 46644 | 214 | apply (rule add_mono) | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 215 | apply (metis max.cobounded2 linorder_linear max.absorb1 mult_right_mono xt1(6)) | 
| 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 216 | by (metis max.cobounded2 linorder_not_le mult_le_cancel_right order_trans) | 
| 23449 | 217 | |
| 45575 | 218 | lemma bigo_bounded_alt: "\<forall>x. 0 <= f x \<Longrightarrow> \<forall>x. f x <= c * g x \<Longrightarrow> f : O(g)" | 
| 219 | apply (auto simp add: bigo_def) | |
| 36561 | 220 | (* Version 1: one-line proof *) | 
| 45575 | 221 | by (metis abs_le_D1 linorder_class.not_less order_less_le Orderings.xt1(12) abs_mult) | 
| 23449 | 222 | |
| 45575 | 223 | lemma "\<forall>x. 0 <= f x \<Longrightarrow> \<forall>x. f x <= c * g x \<Longrightarrow> f : O(g)" | 
| 36561 | 224 | apply (auto simp add: bigo_def) | 
| 225 | (* Version 2: structured proof *) | |
| 226 | proof - | |
| 227 | assume "\<forall>x. f x \<le> c * g x" | |
| 228 | thus "\<exists>c. \<forall>x. f x \<le> c * \<bar>g x\<bar>" by (metis abs_mult abs_ge_self order_trans) | |
| 23449 | 229 | qed | 
| 230 | ||
| 45575 | 231 | lemma bigo_bounded: "\<forall>x. 0 <= f x \<Longrightarrow> \<forall>x. f x <= g x \<Longrightarrow> f : O(g)" | 
| 232 | apply (erule bigo_bounded_alt [of f 1 g]) | |
| 233 | by (metis mult_1) | |
| 23449 | 234 | |
| 45575 | 235 | lemma bigo_bounded2: "\<forall>x. lb x <= f x \<Longrightarrow> \<forall>x. f x <= lb x + g x \<Longrightarrow> f : lb +o O(g)" | 
| 36561 | 236 | apply (rule set_minus_imp_plus) | 
| 237 | apply (rule bigo_bounded) | |
| 46369 | 238 | apply (metis add_le_cancel_left diff_add_cancel diff_self minus_apply | 
| 239 | comm_semiring_1_class.normalizing_semiring_rules(24)) | |
| 240 | by (metis add_le_cancel_left diff_add_cancel func_plus le_fun_def | |
| 241 | comm_semiring_1_class.normalizing_semiring_rules(24)) | |
| 23449 | 242 | |
| 45575 | 243 | lemma bigo_abs: "(\<lambda>x. abs(f x)) =o O(f)" | 
| 36561 | 244 | apply (unfold bigo_def) | 
| 245 | apply auto | |
| 36844 | 246 | by (metis mult_1 order_refl) | 
| 23449 | 247 | |
| 45575 | 248 | lemma bigo_abs2: "f =o O(\<lambda>x. abs(f x))" | 
| 36561 | 249 | apply (unfold bigo_def) | 
| 250 | apply auto | |
| 36844 | 251 | by (metis mult_1 order_refl) | 
| 43197 | 252 | |
| 45575 | 253 | lemma bigo_abs3: "O(f) = O(\<lambda>x. abs(f x))" | 
| 36561 | 254 | proof - | 
| 255 | have F1: "\<forall>v u. u \<in> O(v) \<longrightarrow> O(u) \<subseteq> O(v)" by (metis bigo_elt_subset) | |
| 256 | have F2: "\<forall>u. (\<lambda>R. \<bar>u R\<bar>) \<in> O(u)" by (metis bigo_abs) | |
| 257 | have "\<forall>u. u \<in> O(\<lambda>R. \<bar>u R\<bar>)" by (metis bigo_abs2) | |
| 258 | thus "O(f) = O(\<lambda>x. \<bar>f x\<bar>)" using F1 F2 by auto | |
| 43197 | 259 | qed | 
| 23449 | 260 | |
| 45575 | 261 | lemma bigo_abs4: "f =o g +o O(h) \<Longrightarrow> (\<lambda>x. abs (f x)) =o (\<lambda>x. abs (g x)) +o O(h)" | 
| 23449 | 262 | apply (drule set_plus_imp_minus) | 
| 263 | apply (rule set_minus_imp_plus) | |
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 264 | apply (subst fun_diff_def) | 
| 23449 | 265 | proof - | 
| 266 | assume a: "f - g : O(h)" | |
| 45575 | 267 | have "(\<lambda>x. abs (f x) - abs (g x)) =o O(\<lambda>x. abs(abs (f x) - abs (g x)))" | 
| 23449 | 268 | by (rule bigo_abs2) | 
| 45575 | 269 | also have "... <= O(\<lambda>x. abs (f x - g x))" | 
| 23449 | 270 | apply (rule bigo_elt_subset) | 
| 271 | apply (rule bigo_bounded) | |
| 46369 | 272 | apply (metis abs_ge_zero) | 
| 273 | by (metis abs_triangle_ineq3) | |
| 23449 | 274 | also have "... <= O(f - g)" | 
| 275 | apply (rule bigo_elt_subset) | |
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 276 | apply (subst fun_diff_def) | 
| 23449 | 277 | apply (rule bigo_abs) | 
| 278 | done | |
| 279 | also have "... <= O(h)" | |
| 23464 | 280 | using a by (rule bigo_elt_subset) | 
| 45575 | 281 | finally show "(\<lambda>x. abs (f x) - abs (g x)) : O(h)". | 
| 23449 | 282 | qed | 
| 283 | ||
| 45575 | 284 | lemma bigo_abs5: "f =o O(g) \<Longrightarrow> (\<lambda>x. abs(f x)) =o O(g)" | 
| 23449 | 285 | by (unfold bigo_def, auto) | 
| 286 | ||
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 287 | lemma bigo_elt_subset2 [intro]: "f : g +o O(h) \<Longrightarrow> O(f) <= O(g) + O(h)" | 
| 23449 | 288 | proof - | 
| 289 | assume "f : g +o O(h)" | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 290 | also have "... <= O(g) + O(h)" | 
| 23449 | 291 | by (auto del: subsetI) | 
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 292 | also have "... = O(\<lambda>x. abs(g x)) + O(\<lambda>x. abs(h x))" | 
| 46369 | 293 | by (metis bigo_abs3) | 
| 45575 | 294 | also have "... = O((\<lambda>x. abs(g x)) + (\<lambda>x. abs(h x)))" | 
| 23449 | 295 | by (rule bigo_plus_eq [symmetric], auto) | 
| 296 | finally have "f : ...". | |
| 297 | then have "O(f) <= ..." | |
| 298 | by (elim bigo_elt_subset) | |
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 299 | also have "... = O(\<lambda>x. abs(g x)) + O(\<lambda>x. abs(h x))" | 
| 23449 | 300 | by (rule bigo_plus_eq, auto) | 
| 301 | finally show ?thesis | |
| 302 | by (simp add: bigo_abs3 [symmetric]) | |
| 303 | qed | |
| 304 | ||
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 305 | lemma bigo_mult [intro]: "O(f) * O(g) <= O(f * g)" | 
| 46369 | 306 | apply (rule subsetI) | 
| 307 | apply (subst bigo_def) | |
| 308 | apply (auto simp del: abs_mult mult_ac | |
| 309 | simp add: bigo_alt_def set_times_def func_times) | |
| 45575 | 310 | (* sledgehammer *) | 
| 46369 | 311 | apply (rule_tac x = "c * ca" in exI) | 
| 312 | apply (rule allI) | |
| 313 | apply (erule_tac x = x in allE)+ | |
| 314 | apply (subgoal_tac "c * ca * abs (f x * g x) = (c * abs(f x)) * (ca * abs (g x))") | |
| 315 | apply (metis (no_types) abs_ge_zero abs_mult mult_mono') | |
| 316 | by (metis mult_assoc mult_left_commute abs_of_pos mult_left_commute abs_mult) | |
| 23449 | 317 | |
| 318 | lemma bigo_mult2 [intro]: "f *o O(g) <= O(f * g)" | |
| 46369 | 319 | by (metis bigo_mult bigo_refl set_times_mono3 subset_trans) | 
| 23449 | 320 | |
| 45575 | 321 | lemma bigo_mult3: "f : O(h) \<Longrightarrow> g : O(j) \<Longrightarrow> f * g : O(h * j)" | 
| 36561 | 322 | by (metis bigo_mult set_rev_mp set_times_intro) | 
| 23449 | 323 | |
| 45575 | 324 | lemma bigo_mult4 [intro]:"f : k +o O(h) \<Longrightarrow> g * f : (g * k) +o O(g * h)" | 
| 23449 | 325 | by (metis bigo_mult2 set_plus_mono_b set_times_intro2 set_times_plus_distrib) | 
| 326 | ||
| 45575 | 327 | lemma bigo_mult5: "\<forall>x. f x ~= 0 \<Longrightarrow> | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 328 |     O(f * g) <= (f\<Colon>'a => ('b\<Colon>linordered_field)) *o O(g)"
 | 
| 23449 | 329 | proof - | 
| 45575 | 330 | assume a: "\<forall>x. f x ~= 0" | 
| 23449 | 331 | show "O(f * g) <= f *o O(g)" | 
| 332 | proof | |
| 333 | fix h | |
| 41541 | 334 | assume h: "h : O(f * g)" | 
| 45575 | 335 | then have "(\<lambda>x. 1 / (f x)) * h : (\<lambda>x. 1 / f x) *o O(f * g)" | 
| 23449 | 336 | by auto | 
| 45575 | 337 | also have "... <= O((\<lambda>x. 1 / f x) * (f * g))" | 
| 23449 | 338 | by (rule bigo_mult2) | 
| 45575 | 339 | also have "(\<lambda>x. 1 / f x) * (f * g) = g" | 
| 43197 | 340 | apply (simp add: func_times) | 
| 46369 | 341 | by (metis (lifting, no_types) a ext mult_ac(2) nonzero_divide_eq_eq) | 
| 45575 | 342 | finally have "(\<lambda>x. (1\<Colon>'b) / f x) * h : O(g)". | 
| 343 | then have "f * ((\<lambda>x. (1\<Colon>'b) / f x) * h) : f *o O(g)" | |
| 23449 | 344 | by auto | 
| 45575 | 345 | also have "f * ((\<lambda>x. (1\<Colon>'b) / f x) * h) = h" | 
| 43197 | 346 | apply (simp add: func_times) | 
| 46369 | 347 | by (metis (lifting, no_types) a eq_divide_imp ext | 
| 348 | comm_semiring_1_class.normalizing_semiring_rules(7)) | |
| 23449 | 349 | finally show "h : f *o O(g)". | 
| 350 | qed | |
| 351 | qed | |
| 352 | ||
| 46369 | 353 | lemma bigo_mult6: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 354 | "\<forall>x. f x \<noteq> 0 \<Longrightarrow> O(f * g) = (f\<Colon>'a \<Rightarrow> ('b\<Colon>linordered_field)) *o O(g)"
 | 
| 23449 | 355 | by (metis bigo_mult2 bigo_mult5 order_antisym) | 
| 356 | ||
| 357 | (*proof requires relaxing relevance: 2007-01-25*) | |
| 45705 | 358 | declare bigo_mult6 [simp] | 
| 359 | ||
| 46369 | 360 | lemma bigo_mult7: | 
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 361 | "\<forall>x. f x \<noteq> 0 \<Longrightarrow> O(f * g) \<le> O(f\<Colon>'a \<Rightarrow> ('b\<Colon>linordered_field)) * O(g)"
 | 
| 46369 | 362 | by (metis bigo_refl bigo_mult6 set_times_mono3) | 
| 23449 | 363 | |
| 45575 | 364 | declare bigo_mult6 [simp del] | 
| 365 | declare bigo_mult7 [intro!] | |
| 366 | ||
| 46369 | 367 | lemma bigo_mult8: | 
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 368 | "\<forall>x. f x \<noteq> 0 \<Longrightarrow> O(f * g) = O(f\<Colon>'a \<Rightarrow> ('b\<Colon>linordered_field)) * O(g)"
 | 
| 23449 | 369 | by (metis bigo_mult bigo_mult7 order_antisym_conv) | 
| 370 | ||
| 45575 | 371 | lemma bigo_minus [intro]: "f : O(g) \<Longrightarrow> - f : O(g)" | 
| 46369 | 372 | by (auto simp add: bigo_def fun_Compl_def) | 
| 23449 | 373 | |
| 45575 | 374 | lemma bigo_minus2: "f : g +o O(h) \<Longrightarrow> -f : -g +o O(h)" | 
| 46369 | 375 | by (metis (no_types) bigo_elt_subset bigo_minus bigo_mult4 bigo_refl | 
| 376 | comm_semiring_1_class.normalizing_semiring_rules(11) minus_mult_left | |
| 377 | set_plus_mono_b) | |
| 23449 | 378 | |
| 379 | lemma bigo_minus3: "O(-f) = O(f)" | |
| 46369 | 380 | by (metis bigo_elt_subset bigo_minus bigo_refl equalityI minus_minus) | 
| 23449 | 381 | |
| 46369 | 382 | lemma bigo_plus_absorb_lemma1: "f : O(g) \<Longrightarrow> f +o O(g) \<le> O(g)" | 
| 383 | by (metis bigo_plus_idemp set_plus_mono3) | |
| 23449 | 384 | |
| 46369 | 385 | lemma bigo_plus_absorb_lemma2: "f : O(g) \<Longrightarrow> O(g) \<le> f +o O(g)" | 
| 386 | by (metis (no_types) bigo_minus bigo_plus_absorb_lemma1 right_minus | |
| 46644 | 387 | set_plus_mono set_plus_rearrange2 set_zero_plus subsetD subset_refl | 
| 388 | subset_trans) | |
| 23449 | 389 | |
| 45575 | 390 | lemma bigo_plus_absorb [simp]: "f : O(g) \<Longrightarrow> f +o O(g) = O(g)" | 
| 41865 
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
 paulson parents: 
41541diff
changeset | 391 | by (metis bigo_plus_absorb_lemma1 bigo_plus_absorb_lemma2 order_eq_iff) | 
| 23449 | 392 | |
| 46369 | 393 | lemma bigo_plus_absorb2 [intro]: "f : O(g) \<Longrightarrow> A <= O(g) \<Longrightarrow> f +o A \<le> O(g)" | 
| 394 | by (metis bigo_plus_absorb set_plus_mono) | |
| 23449 | 395 | |
| 45575 | 396 | lemma bigo_add_commute_imp: "f : g +o O(h) \<Longrightarrow> g : f +o O(h)" | 
| 46369 | 397 | by (metis bigo_minus minus_diff_eq set_plus_imp_minus set_minus_plus) | 
| 23449 | 398 | |
| 399 | lemma bigo_add_commute: "(f : g +o O(h)) = (g : f +o O(h))" | |
| 46369 | 400 | by (metis bigo_add_commute_imp) | 
| 23449 | 401 | |
| 45575 | 402 | lemma bigo_const1: "(\<lambda>x. c) : O(\<lambda>x. 1)" | 
| 23449 | 403 | by (auto simp add: bigo_def mult_ac) | 
| 404 | ||
| 46369 | 405 | lemma bigo_const2 [intro]: "O(\<lambda>x. c) \<le> O(\<lambda>x. 1)" | 
| 41865 
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
 paulson parents: 
41541diff
changeset | 406 | by (metis bigo_const1 bigo_elt_subset) | 
| 23449 | 407 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 408 | lemma bigo_const3: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> (\<lambda>x. 1) : O(\<lambda>x. c)" | 
| 23449 | 409 | apply (simp add: bigo_def) | 
| 36561 | 410 | by (metis abs_eq_0 left_inverse order_refl) | 
| 23449 | 411 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 412 | lemma bigo_const4: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> O(\<lambda>x. 1) <= O(\<lambda>x. c)" | 
| 46369 | 413 | by (metis bigo_elt_subset bigo_const3) | 
| 23449 | 414 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 415 | lemma bigo_const [simp]: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> | 
| 45575 | 416 | O(\<lambda>x. c) = O(\<lambda>x. 1)" | 
| 46369 | 417 | by (metis bigo_const2 bigo_const4 equalityI) | 
| 23449 | 418 | |
| 45575 | 419 | lemma bigo_const_mult1: "(\<lambda>x. c * f x) : O(f)" | 
| 46369 | 420 | apply (simp add: bigo_def abs_mult) | 
| 36561 | 421 | by (metis le_less) | 
| 23449 | 422 | |
| 46369 | 423 | lemma bigo_const_mult2: "O(\<lambda>x. c * f x) \<le> O(f)" | 
| 23449 | 424 | by (rule bigo_elt_subset, rule bigo_const_mult1) | 
| 425 | ||
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 426 | lemma bigo_const_mult3: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> f : O(\<lambda>x. c * f x)" | 
| 45575 | 427 | apply (simp add: bigo_def) | 
| 46369 | 428 | by (metis (no_types) abs_mult mult_assoc mult_1 order_refl left_inverse) | 
| 23449 | 429 | |
| 46369 | 430 | lemma bigo_const_mult4: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 431 | "(c\<Colon>'a\<Colon>linordered_field) \<noteq> 0 \<Longrightarrow> O(f) \<le> O(\<lambda>x. c * f x)" | 
| 46369 | 432 | by (metis bigo_elt_subset bigo_const_mult3) | 
| 23449 | 433 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 434 | lemma bigo_const_mult [simp]: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> | 
| 45575 | 435 | O(\<lambda>x. c * f x) = O(f)" | 
| 46369 | 436 | by (metis equalityI bigo_const_mult2 bigo_const_mult4) | 
| 23449 | 437 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 438 | lemma bigo_const_mult5 [simp]: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> | 
| 45575 | 439 | (\<lambda>x. c) *o O(f) = O(f)" | 
| 23449 | 440 | apply (auto del: subsetI) | 
| 441 | apply (rule order_trans) | |
| 442 | apply (rule bigo_mult2) | |
| 443 | apply (simp add: func_times) | |
| 444 | apply (auto intro!: subsetI simp add: bigo_def elt_set_times_def func_times) | |
| 45575 | 445 | apply (rule_tac x = "\<lambda>y. inverse c * x y" in exI) | 
| 43197 | 446 | apply (rename_tac g d) | 
| 24942 | 447 | apply safe | 
| 43197 | 448 | apply (rule_tac [2] ext) | 
| 449 | prefer 2 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25710diff
changeset | 450 | apply simp | 
| 24942 | 451 | apply (simp add: mult_assoc [symmetric] abs_mult) | 
| 39259 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 452 | (* couldn't get this proof without the step above *) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 453 | proof - | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 454 | fix g :: "'b \<Rightarrow> 'a" and d :: 'a | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 455 | assume A1: "c \<noteq> (0\<Colon>'a)" | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 456 | assume A2: "\<forall>x\<Colon>'b. \<bar>g x\<bar> \<le> d * \<bar>f x\<bar>" | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 457 | have F1: "inverse \<bar>c\<bar> = \<bar>inverse c\<bar>" using A1 by (metis nonzero_abs_inverse) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 458 | have F2: "(0\<Colon>'a) < \<bar>c\<bar>" using A1 by (metis zero_less_abs_iff) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 459 | have "(0\<Colon>'a) < \<bar>c\<bar> \<longrightarrow> (0\<Colon>'a) < \<bar>inverse c\<bar>" using F1 by (metis positive_imp_inverse_positive) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 460 | hence "(0\<Colon>'a) < \<bar>inverse c\<bar>" using F2 by metis | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 461 | hence F3: "(0\<Colon>'a) \<le> \<bar>inverse c\<bar>" by (metis order_le_less) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 462 | have "\<exists>(u\<Colon>'a) SKF\<^sub>7\<Colon>'a \<Rightarrow> 'b. \<bar>g (SKF\<^sub>7 (\<bar>inverse c\<bar> * u))\<bar> \<le> u * \<bar>f (SKF\<^sub>7 (\<bar>inverse c\<bar> * u))\<bar>" | 
| 39259 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 463 | using A2 by metis | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 464 | hence F4: "\<exists>(u\<Colon>'a) SKF\<^sub>7\<Colon>'a \<Rightarrow> 'b. \<bar>g (SKF\<^sub>7 (\<bar>inverse c\<bar> * u))\<bar> \<le> u * \<bar>f (SKF\<^sub>7 (\<bar>inverse c\<bar> * u))\<bar> \<and> (0\<Colon>'a) \<le> \<bar>inverse c\<bar>" | 
| 39259 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 465 | using F3 by metis | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51130diff
changeset | 466 | hence "\<exists>(v\<Colon>'a) (u\<Colon>'a) SKF\<^sub>7\<Colon>'a \<Rightarrow> 'b. \<bar>inverse c\<bar> * \<bar>g (SKF\<^sub>7 (u * v))\<bar> \<le> u * (v * \<bar>f (SKF\<^sub>7 (u * v))\<bar>)" | 
| 39259 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 467 | by (metis comm_mult_left_mono) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 468 | thus "\<exists>ca\<Colon>'a. \<forall>x\<Colon>'b. \<bar>inverse c\<bar> * \<bar>g x\<bar> \<le> ca * \<bar>f x\<bar>" | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 469 | using A2 F4 by (metis ab_semigroup_mult_class.mult_ac(1) comm_mult_left_mono) | 
| 
194014eb4f9f
replace two slow "metis" proofs with faster proofs
 blanchet parents: 
38991diff
changeset | 470 | qed | 
| 23449 | 471 | |
| 45575 | 472 | lemma bigo_const_mult6 [intro]: "(\<lambda>x. c) *o O(f) <= O(f)" | 
| 23449 | 473 | apply (auto intro!: subsetI | 
| 474 | simp add: bigo_def elt_set_times_def func_times | |
| 475 | simp del: abs_mult mult_ac) | |
| 45575 | 476 | (* sledgehammer *) | 
| 23449 | 477 | apply (rule_tac x = "ca * (abs c)" in exI) | 
| 478 | apply (rule allI) | |
| 479 | apply (subgoal_tac "ca * abs(c) * abs(f x) = abs(c) * (ca * abs(f x))") | |
| 480 | apply (erule ssubst) | |
| 481 | apply (subst abs_mult) | |
| 482 | apply (rule mult_left_mono) | |
| 483 | apply (erule spec) | |
| 484 | apply simp | |
| 46369 | 485 | apply (simp add: mult_ac) | 
| 23449 | 486 | done | 
| 487 | ||
| 45575 | 488 | lemma bigo_const_mult7 [intro]: "f =o O(g) \<Longrightarrow> (\<lambda>x. c * f x) =o O(g)" | 
| 46369 | 489 | by (metis bigo_const_mult1 bigo_elt_subset order_less_le psubsetD) | 
| 23449 | 490 | |
| 45575 | 491 | lemma bigo_compose1: "f =o O(g) \<Longrightarrow> (\<lambda>x. f(k x)) =o O(\<lambda>x. g(k x))" | 
| 23449 | 492 | by (unfold bigo_def, auto) | 
| 493 | ||
| 46369 | 494 | lemma bigo_compose2: | 
| 495 | "f =o g +o O(h) \<Longrightarrow> (\<lambda>x. f(k x)) =o (\<lambda>x. g(k x)) +o O(\<lambda>x. h(k x))" | |
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53015diff
changeset | 496 | apply (simp only: set_minus_plus [symmetric] fun_Compl_def func_plus) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53015diff
changeset | 497 | apply (drule bigo_compose1 [of "f - g" h k]) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53015diff
changeset | 498 | apply (simp add: fun_diff_def) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53015diff
changeset | 499 | done | 
| 23449 | 500 | |
| 501 | subsection {* Setsum *}
 | |
| 502 | ||
| 45575 | 503 | lemma bigo_setsum_main: "\<forall>x. \<forall>y \<in> A x. 0 <= h x y \<Longrightarrow> | 
| 504 | \<exists>c. \<forall>x. \<forall>y \<in> A x. abs (f x y) <= c * (h x y) \<Longrightarrow> | |
| 505 | (\<lambda>x. SUM y : A x. f x y) =o O(\<lambda>x. SUM y : A x. h x y)" | |
| 46369 | 506 | apply (auto simp add: bigo_def) | 
| 507 | apply (rule_tac x = "abs c" in exI) | |
| 508 | apply (subst abs_of_nonneg) back back | |
| 509 | apply (rule setsum_nonneg) | |
| 510 | apply force | |
| 511 | apply (subst setsum_right_distrib) | |
| 512 | apply (rule allI) | |
| 513 | apply (rule order_trans) | |
| 514 | apply (rule setsum_abs) | |
| 515 | apply (rule setsum_mono) | |
| 516 | by (metis abs_ge_self abs_mult_pos order_trans) | |
| 23449 | 517 | |
| 45575 | 518 | lemma bigo_setsum1: "\<forall>x y. 0 <= h x y \<Longrightarrow> | 
| 519 | \<exists>c. \<forall>x y. abs (f x y) <= c * (h x y) \<Longrightarrow> | |
| 520 | (\<lambda>x. SUM y : A x. f x y) =o O(\<lambda>x. SUM y : A x. h x y)" | |
| 521 | by (metis (no_types) bigo_setsum_main) | |
| 23449 | 522 | |
| 45575 | 523 | lemma bigo_setsum2: "\<forall>y. 0 <= h y \<Longrightarrow> | 
| 46369 | 524 | \<exists>c. \<forall>y. abs (f y) <= c * (h y) \<Longrightarrow> | 
| 45575 | 525 | (\<lambda>x. SUM y : A x. f y) =o O(\<lambda>x. SUM y : A x. h y)" | 
| 46369 | 526 | apply (rule bigo_setsum1) | 
| 527 | by metis+ | |
| 23449 | 528 | |
| 45575 | 529 | lemma bigo_setsum3: "f =o O(h) \<Longrightarrow> | 
| 530 | (\<lambda>x. SUM y : A x. (l x y) * f(k x y)) =o | |
| 531 | O(\<lambda>x. SUM y : A x. abs(l x y * h(k x y)))" | |
| 532 | apply (rule bigo_setsum1) | |
| 533 | apply (rule allI)+ | |
| 534 | apply (rule abs_ge_zero) | |
| 535 | apply (unfold bigo_def) | |
| 536 | apply (auto simp add: abs_mult) | |
| 46369 | 537 | by (metis abs_ge_zero mult_left_commute mult_left_mono) | 
| 23449 | 538 | |
| 45575 | 539 | lemma bigo_setsum4: "f =o g +o O(h) \<Longrightarrow> | 
| 540 | (\<lambda>x. SUM y : A x. l x y * f(k x y)) =o | |
| 541 | (\<lambda>x. SUM y : A x. l x y * g(k x y)) +o | |
| 542 | O(\<lambda>x. SUM y : A x. abs(l x y * h(k x y)))" | |
| 543 | apply (rule set_minus_imp_plus) | |
| 544 | apply (subst fun_diff_def) | |
| 545 | apply (subst setsum_subtractf [symmetric]) | |
| 546 | apply (subst right_diff_distrib [symmetric]) | |
| 547 | apply (rule bigo_setsum3) | |
| 46369 | 548 | by (metis (lifting, no_types) fun_diff_def set_plus_imp_minus ext) | 
| 23449 | 549 | |
| 45575 | 550 | lemma bigo_setsum5: "f =o O(h) \<Longrightarrow> \<forall>x y. 0 <= l x y \<Longrightarrow> | 
| 551 | \<forall>x. 0 <= h x \<Longrightarrow> | |
| 552 | (\<lambda>x. SUM y : A x. (l x y) * f(k x y)) =o | |
| 553 | O(\<lambda>x. SUM y : A x. (l x y) * h(k x y))" | |
| 46369 | 554 | apply (subgoal_tac "(\<lambda>x. SUM y : A x. (l x y) * h(k x y)) = | 
| 45575 | 555 | (\<lambda>x. SUM y : A x. abs((l x y) * h(k x y)))") | 
| 46369 | 556 | apply (erule ssubst) | 
| 557 | apply (erule bigo_setsum3) | |
| 558 | apply (rule ext) | |
| 559 | apply (rule setsum_cong2) | |
| 560 | by (metis abs_of_nonneg zero_le_mult_iff) | |
| 23449 | 561 | |
| 45575 | 562 | lemma bigo_setsum6: "f =o g +o O(h) \<Longrightarrow> \<forall>x y. 0 <= l x y \<Longrightarrow> | 
| 563 | \<forall>x. 0 <= h x \<Longrightarrow> | |
| 564 | (\<lambda>x. SUM y : A x. (l x y) * f(k x y)) =o | |
| 565 | (\<lambda>x. SUM y : A x. (l x y) * g(k x y)) +o | |
| 566 | O(\<lambda>x. SUM y : A x. (l x y) * h(k x y))" | |
| 23449 | 567 | apply (rule set_minus_imp_plus) | 
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 568 | apply (subst fun_diff_def) | 
| 23449 | 569 | apply (subst setsum_subtractf [symmetric]) | 
| 570 | apply (subst right_diff_distrib [symmetric]) | |
| 571 | apply (rule bigo_setsum5) | |
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 572 | apply (subst fun_diff_def [symmetric]) | 
| 23449 | 573 | apply (drule set_plus_imp_minus) | 
| 574 | apply auto | |
| 575 | done | |
| 576 | ||
| 577 | subsection {* Misc useful stuff *}
 | |
| 578 | ||
| 45575 | 579 | lemma bigo_useful_intro: "A <= O(f) \<Longrightarrow> B <= O(f) \<Longrightarrow> | 
| 47445 
69e96e5500df
Set_Algebras: removed syntax \<oplus> and \<otimes>, in favour of plain + and *
 krauss parents: 
47108diff
changeset | 580 | A + B <= O(f)" | 
| 23449 | 581 | apply (subst bigo_plus_idemp [symmetric]) | 
| 582 | apply (rule set_plus_mono2) | |
| 583 | apply assumption+ | |
| 584 | done | |
| 585 | ||
| 45575 | 586 | lemma bigo_useful_add: "f =o O(h) \<Longrightarrow> g =o O(h) \<Longrightarrow> f + g =o O(h)" | 
| 23449 | 587 | apply (subst bigo_plus_idemp [symmetric]) | 
| 588 | apply (rule set_plus_intro) | |
| 589 | apply assumption+ | |
| 590 | done | |
| 43197 | 591 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 592 | lemma bigo_useful_const_mult: "(c\<Colon>'a\<Colon>linordered_field) ~= 0 \<Longrightarrow> | 
| 45575 | 593 | (\<lambda>x. c) * f =o O(h) \<Longrightarrow> f =o O(h)" | 
| 23449 | 594 | apply (rule subsetD) | 
| 45575 | 595 | apply (subgoal_tac "(\<lambda>x. 1 / c) *o O(h) <= O(h)") | 
| 23449 | 596 | apply assumption | 
| 597 | apply (rule bigo_const_mult6) | |
| 45575 | 598 | apply (subgoal_tac "f = (\<lambda>x. 1 / c) * ((\<lambda>x. c) * f)") | 
| 23449 | 599 | apply (erule ssubst) | 
| 600 | apply (erule set_times_intro2) | |
| 43197 | 601 | apply (simp add: func_times) | 
| 23449 | 602 | done | 
| 603 | ||
| 45575 | 604 | lemma bigo_fix: "(\<lambda>x. f ((x\<Colon>nat) + 1)) =o O(\<lambda>x. h(x + 1)) \<Longrightarrow> f 0 = 0 \<Longrightarrow> | 
| 23449 | 605 | f =o O(h)" | 
| 45575 | 606 | apply (simp add: bigo_alt_def) | 
| 607 | by (metis abs_ge_zero abs_mult abs_of_pos abs_zero not0_implies_Suc) | |
| 23449 | 608 | |
| 43197 | 609 | lemma bigo_fix2: | 
| 45575 | 610 | "(\<lambda>x. f ((x\<Colon>nat) + 1)) =o (\<lambda>x. g(x + 1)) +o O(\<lambda>x. h(x + 1)) \<Longrightarrow> | 
| 611 | f 0 = g 0 \<Longrightarrow> f =o g +o O(h)" | |
| 23449 | 612 | apply (rule set_minus_imp_plus) | 
| 613 | apply (rule bigo_fix) | |
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 614 | apply (subst fun_diff_def) | 
| 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 615 | apply (subst fun_diff_def [symmetric]) | 
| 23449 | 616 | apply (rule set_plus_imp_minus) | 
| 617 | apply simp | |
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 618 | apply (simp add: fun_diff_def) | 
| 23449 | 619 | done | 
| 620 | ||
| 621 | subsection {* Less than or equal to *}
 | |
| 622 | ||
| 45575 | 623 | definition lesso :: "('a => 'b\<Colon>linordered_idom) => ('a => 'b) => ('a => 'b)" (infixl "<o" 70) where
 | 
| 624 | "f <o g == (\<lambda>x. max (f x - g x) 0)" | |
| 23449 | 625 | |
| 45575 | 626 | lemma bigo_lesseq1: "f =o O(h) \<Longrightarrow> \<forall>x. abs (g x) <= abs (f x) \<Longrightarrow> | 
| 23449 | 627 | g =o O(h)" | 
| 628 | apply (unfold bigo_def) | |
| 629 | apply clarsimp | |
| 43197 | 630 | apply (blast intro: order_trans) | 
| 23449 | 631 | done | 
| 632 | ||
| 45575 | 633 | lemma bigo_lesseq2: "f =o O(h) \<Longrightarrow> \<forall>x. abs (g x) <= f x \<Longrightarrow> | 
| 23449 | 634 | g =o O(h)" | 
| 635 | apply (erule bigo_lesseq1) | |
| 43197 | 636 | apply (blast intro: abs_ge_self order_trans) | 
| 23449 | 637 | done | 
| 638 | ||
| 45575 | 639 | lemma bigo_lesseq3: "f =o O(h) \<Longrightarrow> \<forall>x. 0 <= g x \<Longrightarrow> \<forall>x. g x <= f x \<Longrightarrow> | 
| 23449 | 640 | g =o O(h)" | 
| 641 | apply (erule bigo_lesseq2) | |
| 642 | apply (rule allI) | |
| 643 | apply (subst abs_of_nonneg) | |
| 644 | apply (erule spec)+ | |
| 645 | done | |
| 646 | ||
| 45575 | 647 | lemma bigo_lesseq4: "f =o O(h) \<Longrightarrow> | 
| 648 | \<forall>x. 0 <= g x \<Longrightarrow> \<forall>x. g x <= abs (f x) \<Longrightarrow> | |
| 23449 | 649 | g =o O(h)" | 
| 650 | apply (erule bigo_lesseq1) | |
| 651 | apply (rule allI) | |
| 652 | apply (subst abs_of_nonneg) | |
| 653 | apply (erule spec)+ | |
| 654 | done | |
| 655 | ||
| 45575 | 656 | lemma bigo_lesso1: "\<forall>x. f x <= g x \<Longrightarrow> f <o g =o O(h)" | 
| 36561 | 657 | apply (unfold lesso_def) | 
| 45575 | 658 | apply (subgoal_tac "(\<lambda>x. max (f x - g x) 0) = 0") | 
| 659 | apply (metis bigo_zero) | |
| 46364 | 660 | by (metis (lifting, no_types) func_zero le_fun_def le_iff_diff_le_0 | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 661 | max.absorb2 order_eq_iff) | 
| 23449 | 662 | |
| 45575 | 663 | lemma bigo_lesso2: "f =o g +o O(h) \<Longrightarrow> | 
| 664 | \<forall>x. 0 <= k x \<Longrightarrow> \<forall>x. k x <= f x \<Longrightarrow> | |
| 23449 | 665 | k <o g =o O(h)" | 
| 666 | apply (unfold lesso_def) | |
| 667 | apply (rule bigo_lesseq4) | |
| 668 | apply (erule set_plus_imp_minus) | |
| 669 | apply (rule allI) | |
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 670 | apply (rule max.cobounded2) | 
| 23449 | 671 | apply (rule allI) | 
| 26814 
b3e8d5ec721d
Replaced + and * on sets by \<oplus> and \<otimes>, to avoid clash with
 berghofe parents: 
26645diff
changeset | 672 | apply (subst fun_diff_def) | 
| 23449 | 673 | apply (erule thin_rl) | 
| 45575 | 674 | (* sledgehammer *) | 
| 675 | apply (case_tac "0 <= k x - g x") | |
| 46644 | 676 | apply (metis (lifting) abs_le_D1 linorder_linear min_diff_distrib_left | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 677 | min.absorb1 min.absorb2 max.absorb1) | 
| 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 678 | by (metis abs_ge_zero le_cases max.absorb2) | 
| 23449 | 679 | |
| 45575 | 680 | lemma bigo_lesso3: "f =o g +o O(h) \<Longrightarrow> | 
| 681 | \<forall>x. 0 <= k x \<Longrightarrow> \<forall>x. g x <= k x \<Longrightarrow> | |
| 23449 | 682 | f <o k =o O(h)" | 
| 46644 | 683 | apply (unfold lesso_def) | 
| 684 | apply (rule bigo_lesseq4) | |
| 23449 | 685 | apply (erule set_plus_imp_minus) | 
| 46644 | 686 | apply (rule allI) | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 687 | apply (rule max.cobounded2) | 
| 46644 | 688 | apply (rule allI) | 
| 689 | apply (subst fun_diff_def) | |
| 690 | apply (erule thin_rl) | |
| 691 | (* sledgehammer *) | |
| 692 | apply (case_tac "0 <= f x - k x") | |
| 693 | apply simp | |
| 694 | apply (subst abs_of_nonneg) | |
| 23449 | 695 | apply (drule_tac x = x in spec) back | 
| 45705 | 696 | apply (metis diff_less_0_iff_less linorder_not_le not_leE xt1(12) xt1(6)) | 
| 45575 | 697 | apply (metis add_minus_cancel diff_le_eq le_diff_eq uminus_add_conv_diff) | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54230diff
changeset | 698 | by (metis abs_ge_zero linorder_linear max.absorb1 max.commute) | 
| 23449 | 699 | |
| 45705 | 700 | lemma bigo_lesso4: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46644diff
changeset | 701 |   "f <o g =o O(k\<Colon>'a=>'b\<Colon>{linordered_field}) \<Longrightarrow>
 | 
| 45705 | 702 | g =o h +o O(k) \<Longrightarrow> f <o h =o O(k)" | 
| 703 | apply (unfold lesso_def) | |
| 704 | apply (drule set_plus_imp_minus) | |
| 705 | apply (drule bigo_abs5) back | |
| 706 | apply (simp add: fun_diff_def) | |
| 707 | apply (drule bigo_useful_add, assumption) | |
| 708 | apply (erule bigo_lesseq2) back | |
| 709 | apply (rule allI) | |
| 710 | by (auto simp add: func_plus fun_diff_def algebra_simps | |
| 23449 | 711 | split: split_max abs_split) | 
| 712 | ||
| 45705 | 713 | lemma bigo_lesso5: "f <o g =o O(h) \<Longrightarrow> \<exists>C. \<forall>x. f x <= g x + C * abs (h x)" | 
| 714 | apply (simp only: lesso_def bigo_alt_def) | |
| 715 | apply clarsimp | |
| 716 | by (metis abs_if abs_mult add_commute diff_le_eq less_not_permute) | |
| 23449 | 717 | |
| 718 | end |