| author | wenzelm | 
| Thu, 26 Feb 2009 22:13:01 +0100 | |
| changeset 30127 | cd3f37ba3e25 | 
| parent 30063 | e7723cb4b2a6 | 
| child 30160 | 5f7b17941730 | 
| permissions | -rw-r--r-- | 
| 923 | 1 | (* Title: HOL/HOL.thy | 
| 11750 | 2 | Author: Tobias Nipkow, Markus Wenzel, and Larry Paulson | 
| 3 | *) | |
| 923 | 4 | |
| 11750 | 5 | header {* The basis of Higher-Order Logic *}
 | 
| 923 | 6 | |
| 15131 | 7 | theory HOL | 
| 26957 | 8 | imports Pure | 
| 23163 | 9 | uses | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 10 |   ("Tools/hologic.ML")
 | 
| 23171 | 11 | "~~/src/Tools/IsaPlanner/zipper.ML" | 
| 12 | "~~/src/Tools/IsaPlanner/isand.ML" | |
| 13 | "~~/src/Tools/IsaPlanner/rw_tools.ML" | |
| 14 | "~~/src/Tools/IsaPlanner/rw_inst.ML" | |
| 23263 | 15 | "~~/src/Provers/project_rule.ML" | 
| 16 | "~~/src/Provers/hypsubst.ML" | |
| 17 | "~~/src/Provers/splitter.ML" | |
| 23163 | 18 | "~~/src/Provers/classical.ML" | 
| 19 | "~~/src/Provers/blast.ML" | |
| 20 | "~~/src/Provers/clasimp.ML" | |
| 28325 | 21 | "~~/src/Provers/coherent.ML" | 
| 23263 | 22 | "~~/src/Provers/eqsubst.ML" | 
| 23163 | 23 | "~~/src/Provers/quantifier1.ML" | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 24 |   ("Tools/simpdata.ML")
 | 
| 25741 | 25 | "~~/src/Tools/random_word.ML" | 
| 26580 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 26 | "~~/src/Tools/atomize_elim.ML" | 
| 24901 
d3cbf79769b9
added first version of user-space type system for class target
 haftmann parents: 
24844diff
changeset | 27 | "~~/src/Tools/induct.ML" | 
| 27326 
d3beec370964
moved src/HOL/Tools/induct_tacs.ML to src/Tools/induct_tacs.ML;
 wenzelm parents: 
27212diff
changeset | 28 |   ("~~/src/Tools/induct_tacs.ML")
 | 
| 29105 | 29 | "~~/src/Tools/value.ML" | 
| 24280 | 30 | "~~/src/Tools/code/code_name.ML" | 
| 30049 | 31 | "~~/src/Tools/code/code_wellsorted.ML" (* formal dependency *) | 
| 30063 
e7723cb4b2a6
experimental switch to new well-sorting algorithm
 haftmann parents: 
30049diff
changeset | 32 | (*"~~/src/Tools/code/code_funcgr.ML"*) | 
| 24280 | 33 | "~~/src/Tools/code/code_thingol.ML" | 
| 28054 | 34 | "~~/src/Tools/code/code_printer.ML" | 
| 24280 | 35 | "~~/src/Tools/code/code_target.ML" | 
| 28054 | 36 | "~~/src/Tools/code/code_ml.ML" | 
| 37 | "~~/src/Tools/code/code_haskell.ML" | |
| 24166 | 38 | "~~/src/Tools/nbe.ML" | 
| 29505 | 39 |   ("Tools/recfun_codegen.ML")
 | 
| 15131 | 40 | begin | 
| 2260 | 41 | |
| 11750 | 42 | subsection {* Primitive logic *}
 | 
| 43 | ||
| 44 | subsubsection {* Core syntax *}
 | |
| 2260 | 45 | |
| 14854 | 46 | classes type | 
| 12338 
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
 wenzelm parents: 
12281diff
changeset | 47 | defaultsort type | 
| 25494 
b2484a7912ac
replaced typedecl interpretation by ObjectLogic.typedecl (based on base_sort);
 wenzelm parents: 
25460diff
changeset | 48 | setup {* ObjectLogic.add_base_sort @{sort type} *}
 | 
| 25460 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 49 | |
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 50 | arities | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 51 | "fun" :: (type, type) type | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 52 | itself :: (type) type | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 53 | |
| 12338 
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
 wenzelm parents: 
12281diff
changeset | 54 | global | 
| 923 | 55 | |
| 7357 | 56 | typedecl bool | 
| 923 | 57 | |
| 11750 | 58 | judgment | 
| 59 |   Trueprop      :: "bool => prop"                   ("(_)" 5)
 | |
| 923 | 60 | |
| 11750 | 61 | consts | 
| 7357 | 62 |   Not           :: "bool => bool"                   ("~ _" [40] 40)
 | 
| 63 | True :: bool | |
| 64 | False :: bool | |
| 923 | 65 | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 66 |   The           :: "('a => bool) => 'a"
 | 
| 7357 | 67 |   All           :: "('a => bool) => bool"           (binder "ALL " 10)
 | 
| 68 |   Ex            :: "('a => bool) => bool"           (binder "EX " 10)
 | |
| 69 |   Ex1           :: "('a => bool) => bool"           (binder "EX! " 10)
 | |
| 70 | Let :: "['a, 'a => 'b] => 'b" | |
| 923 | 71 | |
| 22839 | 72 | "op =" :: "['a, 'a] => bool" (infixl "=" 50) | 
| 73 | "op &" :: "[bool, bool] => bool" (infixr "&" 35) | |
| 74 | "op |" :: "[bool, bool] => bool" (infixr "|" 30) | |
| 75 | "op -->" :: "[bool, bool] => bool" (infixr "-->" 25) | |
| 923 | 76 | |
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 77 | local | 
| 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 78 | |
| 16587 | 79 | consts | 
| 80 |   If            :: "[bool, 'a, 'a] => 'a"           ("(if (_)/ then (_)/ else (_))" 10)
 | |
| 2260 | 81 | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 82 | |
| 11750 | 83 | subsubsection {* Additional concrete syntax *}
 | 
| 2260 | 84 | |
| 21210 | 85 | notation (output) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 86 | "op =" (infix "=" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 87 | |
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 88 | abbreviation | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 89 | not_equal :: "['a, 'a] => bool" (infixl "~=" 50) where | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 90 | "x ~= y == ~ (x = y)" | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 91 | |
| 21210 | 92 | notation (output) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 93 | not_equal (infix "~=" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 94 | |
| 21210 | 95 | notation (xsymbols) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 96 |   Not  ("\<not> _" [40] 40) and
 | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 97 | "op &" (infixr "\<and>" 35) and | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 98 | "op |" (infixr "\<or>" 30) and | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 99 | "op -->" (infixr "\<longrightarrow>" 25) and | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 100 | not_equal (infix "\<noteq>" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 101 | |
| 21210 | 102 | notation (HTML output) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 103 |   Not  ("\<not> _" [40] 40) and
 | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 104 | "op &" (infixr "\<and>" 35) and | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 105 | "op |" (infixr "\<or>" 30) and | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 106 | not_equal (infix "\<noteq>" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 107 | |
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 108 | abbreviation (iff) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 109 | iff :: "[bool, bool] => bool" (infixr "<->" 25) where | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 110 | "A <-> B == A = B" | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 111 | |
| 21210 | 112 | notation (xsymbols) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 113 | iff (infixr "\<longleftrightarrow>" 25) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 114 | |
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 115 | |
| 4868 | 116 | nonterminals | 
| 923 | 117 | letbinds letbind | 
| 118 | case_syn cases_syn | |
| 119 | ||
| 120 | syntax | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 121 |   "_The"        :: "[pttrn, bool] => 'a"                 ("(3THE _./ _)" [0, 10] 10)
 | 
| 923 | 122 | |
| 7357 | 123 |   "_bind"       :: "[pttrn, 'a] => letbind"              ("(2_ =/ _)" 10)
 | 
| 124 |   ""            :: "letbind => letbinds"                 ("_")
 | |
| 125 |   "_binds"      :: "[letbind, letbinds] => letbinds"     ("_;/ _")
 | |
| 126 |   "_Let"        :: "[letbinds, 'a] => 'a"                ("(let (_)/ in (_))" 10)
 | |
| 923 | 127 | |
| 9060 
b0dd884b1848
rename @case to _case_syntax (improves on low-level errors);
 wenzelm parents: 
8959diff
changeset | 128 |   "_case_syntax":: "['a, cases_syn] => 'b"               ("(case _ of/ _)" 10)
 | 
| 
b0dd884b1848
rename @case to _case_syntax (improves on low-level errors);
 wenzelm parents: 
8959diff
changeset | 129 |   "_case1"      :: "['a, 'b] => case_syn"                ("(2_ =>/ _)" 10)
 | 
| 7357 | 130 |   ""            :: "case_syn => cases_syn"               ("_")
 | 
| 9060 
b0dd884b1848
rename @case to _case_syntax (improves on low-level errors);
 wenzelm parents: 
8959diff
changeset | 131 |   "_case2"      :: "[case_syn, cases_syn] => cases_syn"  ("_/ | _")
 | 
| 923 | 132 | |
| 133 | translations | |
| 13764 | 134 | "THE x. P" == "The (%x. P)" | 
| 923 | 135 | "_Let (_binds b bs) e" == "_Let b (_Let bs e)" | 
| 1114 | 136 | "let x = a in e" == "Let a (%x. e)" | 
| 923 | 137 | |
| 13763 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 138 | print_translation {*
 | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 139 | (* To avoid eta-contraction of body: *) | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 140 | [("The", fn [Abs abs] =>
 | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 141 | let val (x,t) = atomic_abs_tr' abs | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 142 | in Syntax.const "_The" $ x $ t end)] | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 143 | *} | 
| 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 144 | |
| 12114 
a8e860c86252
eliminated old "symbols" syntax, use "xsymbols" instead;
 wenzelm parents: 
12023diff
changeset | 145 | syntax (xsymbols) | 
| 11687 | 146 |   "_case1"      :: "['a, 'b] => case_syn"                ("(2_ \<Rightarrow>/ _)" 10)
 | 
| 21524 | 147 | |
| 148 | notation (xsymbols) | |
| 149 | All (binder "\<forall>" 10) and | |
| 150 | Ex (binder "\<exists>" 10) and | |
| 151 | Ex1 (binder "\<exists>!" 10) | |
| 2372 | 152 | |
| 21524 | 153 | notation (HTML output) | 
| 154 | All (binder "\<forall>" 10) and | |
| 155 | Ex (binder "\<exists>" 10) and | |
| 156 | Ex1 (binder "\<exists>!" 10) | |
| 6340 | 157 | |
| 21524 | 158 | notation (HOL) | 
| 159 | All (binder "! " 10) and | |
| 160 | Ex (binder "? " 10) and | |
| 161 | Ex1 (binder "?! " 10) | |
| 7238 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7220diff
changeset | 162 | |
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7220diff
changeset | 163 | |
| 11750 | 164 | subsubsection {* Axioms and basic definitions *}
 | 
| 2260 | 165 | |
| 7357 | 166 | axioms | 
| 15380 | 167 | refl: "t = (t::'a)" | 
| 28513 | 168 | subst: "s = t \<Longrightarrow> P s \<Longrightarrow> P t" | 
| 15380 | 169 | ext: "(!!x::'a. (f x ::'b) = g x) ==> (%x. f x) = (%x. g x)" | 
| 170 |     -- {*Extensionality is built into the meta-logic, and this rule expresses
 | |
| 171 | a related property. It is an eta-expanded version of the traditional | |
| 172 | rule, and similar to the ABS rule of HOL*} | |
| 6289 | 173 | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 174 | the_eq_trivial: "(THE x. x = a) = (a::'a)" | 
| 923 | 175 | |
| 15380 | 176 | impI: "(P ==> Q) ==> P-->Q" | 
| 177 | mp: "[| P-->Q; P |] ==> Q" | |
| 178 | ||
| 179 | ||
| 923 | 180 | defs | 
| 7357 | 181 | True_def: "True == ((%x::bool. x) = (%x. x))" | 
| 182 | All_def: "All(P) == (P = (%x. True))" | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: 
11438diff
changeset | 183 | Ex_def: "Ex(P) == !Q. (!x. P x --> Q) --> Q" | 
| 7357 | 184 | False_def: "False == (!P. P)" | 
| 185 | not_def: "~ P == P-->False" | |
| 186 | and_def: "P & Q == !R. (P-->Q-->R) --> R" | |
| 187 | or_def: "P | Q == !R. (P-->R) --> (Q-->R) --> R" | |
| 188 | Ex1_def: "Ex1(P) == ? x. P(x) & (! y. P(y) --> y=x)" | |
| 923 | 189 | |
| 7357 | 190 | axioms | 
| 191 | iff: "(P-->Q) --> (Q-->P) --> (P=Q)" | |
| 192 | True_or_False: "(P=True) | (P=False)" | |
| 923 | 193 | |
| 194 | defs | |
| 24219 | 195 | Let_def: "Let s f == f(s)" | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: 
11438diff
changeset | 196 | if_def: "If P x y == THE z::'a. (P=True --> z=x) & (P=False --> z=y)" | 
| 5069 | 197 | |
| 14223 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 198 | finalconsts | 
| 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 199 | "op =" | 
| 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 200 | "op -->" | 
| 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 201 | The | 
| 22481 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 202 | |
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 203 | axiomatization | 
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 204 | undefined :: 'a | 
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 205 | |
| 28682 | 206 | abbreviation (input) | 
| 207 | "arbitrary \<equiv> undefined" | |
| 3320 | 208 | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 209 | |
| 22481 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 210 | subsubsection {* Generic classes and algebraic operations *}
 | 
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 211 | |
| 29608 | 212 | class default = | 
| 24901 
d3cbf79769b9
added first version of user-space type system for class target
 haftmann parents: 
24844diff
changeset | 213 | fixes default :: 'a | 
| 4868 | 214 | |
| 29608 | 215 | class zero = | 
| 25062 | 216 |   fixes zero :: 'a  ("0")
 | 
| 20713 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 217 | |
| 29608 | 218 | class one = | 
| 25062 | 219 |   fixes one  :: 'a  ("1")
 | 
| 20713 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 220 | |
| 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 221 | hide (open) const zero one | 
| 20590 
bf92900995f8
introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
 haftmann parents: 
20453diff
changeset | 222 | |
| 29608 | 223 | class plus = | 
| 25062 | 224 | fixes plus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "+" 65) | 
| 11750 | 225 | |
| 29608 | 226 | class minus = | 
| 25762 | 227 | fixes minus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "-" 65) | 
| 228 | ||
| 29608 | 229 | class uminus = | 
| 25062 | 230 |   fixes uminus :: "'a \<Rightarrow> 'a"  ("- _" [81] 80)
 | 
| 20590 
bf92900995f8
introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
 haftmann parents: 
20453diff
changeset | 231 | |
| 29608 | 232 | class times = | 
| 25062 | 233 | fixes times :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "*" 70) | 
| 20590 
bf92900995f8
introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
 haftmann parents: 
20453diff
changeset | 234 | |
| 29608 | 235 | class inverse = | 
| 20590 
bf92900995f8
introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
 haftmann parents: 
20453diff
changeset | 236 | fixes inverse :: "'a \<Rightarrow> 'a" | 
| 25062 | 237 | and divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "'/" 70) | 
| 21524 | 238 | |
| 29608 | 239 | class abs = | 
| 23878 | 240 | fixes abs :: "'a \<Rightarrow> 'a" | 
| 25388 | 241 | begin | 
| 23878 | 242 | |
| 21524 | 243 | notation (xsymbols) | 
| 244 |   abs  ("\<bar>_\<bar>")
 | |
| 25388 | 245 | |
| 21524 | 246 | notation (HTML output) | 
| 247 |   abs  ("\<bar>_\<bar>")
 | |
| 11750 | 248 | |
| 25388 | 249 | end | 
| 250 | ||
| 29608 | 251 | class sgn = | 
| 25062 | 252 | fixes sgn :: "'a \<Rightarrow> 'a" | 
| 253 | ||
| 29608 | 254 | class ord = | 
| 24748 | 255 | fixes less_eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool" | 
| 256 | and less :: "'a \<Rightarrow> 'a \<Rightarrow> bool" | |
| 23878 | 257 | begin | 
| 258 | ||
| 259 | notation | |
| 260 |   less_eq  ("op <=") and
 | |
| 261 |   less_eq  ("(_/ <= _)" [51, 51] 50) and
 | |
| 262 |   less  ("op <") and
 | |
| 263 |   less  ("(_/ < _)"  [51, 51] 50)
 | |
| 264 | ||
| 265 | notation (xsymbols) | |
| 266 |   less_eq  ("op \<le>") and
 | |
| 267 |   less_eq  ("(_/ \<le> _)"  [51, 51] 50)
 | |
| 268 | ||
| 269 | notation (HTML output) | |
| 270 |   less_eq  ("op \<le>") and
 | |
| 271 |   less_eq  ("(_/ \<le> _)"  [51, 51] 50)
 | |
| 272 | ||
| 25388 | 273 | abbreviation (input) | 
| 274 | greater_eq (infix ">=" 50) where | |
| 275 | "x >= y \<equiv> y <= x" | |
| 276 | ||
| 24842 | 277 | notation (input) | 
| 23878 | 278 | greater_eq (infix "\<ge>" 50) | 
| 279 | ||
| 25388 | 280 | abbreviation (input) | 
| 281 | greater (infix ">" 50) where | |
| 282 | "x > y \<equiv> y < x" | |
| 283 | ||
| 284 | end | |
| 285 | ||
| 13456 
42601eb7553f
special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
 wenzelm parents: 
13438diff
changeset | 286 | syntax | 
| 
42601eb7553f
special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
 wenzelm parents: 
13438diff
changeset | 287 |   "_index1"  :: index    ("\<^sub>1")
 | 
| 
42601eb7553f
special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
 wenzelm parents: 
13438diff
changeset | 288 | translations | 
| 14690 | 289 | (index) "\<^sub>1" => (index) "\<^bsub>\<struct>\<^esub>" | 
| 13456 
42601eb7553f
special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
 wenzelm parents: 
13438diff
changeset | 290 | |
| 11750 | 291 | typed_print_translation {*
 | 
| 20713 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 292 | let | 
| 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 293 | fun tr' c = (c, fn show_sorts => fn T => fn ts => | 
| 29968 | 294 | if (not o null) ts orelse T = dummyT orelse not (! show_types) andalso can Term.dest_Type T then raise Match | 
| 20713 
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
 haftmann parents: 
20698diff
changeset | 295 | else Syntax.const Syntax.constrainC $ Syntax.const c $ Syntax.term_of_typ show_sorts T); | 
| 22993 | 296 | in map tr' [@{const_syntax HOL.one}, @{const_syntax HOL.zero}] end;
 | 
| 11750 | 297 | *} -- {* show types that are presumably too general *}
 | 
| 298 | ||
| 299 | ||
| 20944 | 300 | subsection {* Fundamental rules *}
 | 
| 301 | ||
| 20973 | 302 | subsubsection {* Equality *}
 | 
| 20944 | 303 | |
| 18457 | 304 | lemma sym: "s = t ==> t = s" | 
| 305 | by (erule subst) (rule refl) | |
| 15411 | 306 | |
| 18457 | 307 | lemma ssubst: "t = s ==> P s ==> P t" | 
| 308 | by (drule sym) (erule subst) | |
| 15411 | 309 | |
| 310 | lemma trans: "[| r=s; s=t |] ==> r=t" | |
| 18457 | 311 | by (erule subst) | 
| 15411 | 312 | |
| 20944 | 313 | lemma meta_eq_to_obj_eq: | 
| 314 | assumes meq: "A == B" | |
| 315 | shows "A = B" | |
| 316 | by (unfold meq) (rule refl) | |
| 15411 | 317 | |
| 21502 | 318 | text {* Useful with @{text erule} for proving equalities from known equalities. *}
 | 
| 20944 | 319 | (* a = b | 
| 15411 | 320 | | | | 
| 321 | c = d *) | |
| 322 | lemma box_equals: "[| a=b; a=c; b=d |] ==> c=d" | |
| 323 | apply (rule trans) | |
| 324 | apply (rule trans) | |
| 325 | apply (rule sym) | |
| 326 | apply assumption+ | |
| 327 | done | |
| 328 | ||
| 15524 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 329 | text {* For calculational reasoning: *}
 | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 330 | |
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 331 | lemma forw_subst: "a = b ==> P b ==> P a" | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 332 | by (rule ssubst) | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 333 | |
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 334 | lemma back_subst: "P a ==> a = b ==> P b" | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 335 | by (rule subst) | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 336 | |
| 15411 | 337 | |
| 20944 | 338 | subsubsection {*Congruence rules for application*}
 | 
| 15411 | 339 | |
| 340 | (*similar to AP_THM in Gordon's HOL*) | |
| 341 | lemma fun_cong: "(f::'a=>'b) = g ==> f(x)=g(x)" | |
| 342 | apply (erule subst) | |
| 343 | apply (rule refl) | |
| 344 | done | |
| 345 | ||
| 346 | (*similar to AP_TERM in Gordon's HOL and FOL's subst_context*) | |
| 347 | lemma arg_cong: "x=y ==> f(x)=f(y)" | |
| 348 | apply (erule subst) | |
| 349 | apply (rule refl) | |
| 350 | done | |
| 351 | ||
| 15655 | 352 | lemma arg_cong2: "\<lbrakk> a = b; c = d \<rbrakk> \<Longrightarrow> f a c = f b d" | 
| 353 | apply (erule ssubst)+ | |
| 354 | apply (rule refl) | |
| 355 | done | |
| 356 | ||
| 15411 | 357 | lemma cong: "[| f = g; (x::'a) = y |] ==> f(x) = g(y)" | 
| 358 | apply (erule subst)+ | |
| 359 | apply (rule refl) | |
| 360 | done | |
| 361 | ||
| 362 | ||
| 20944 | 363 | subsubsection {*Equality of booleans -- iff*}
 | 
| 15411 | 364 | |
| 21504 | 365 | lemma iffI: assumes "P ==> Q" and "Q ==> P" shows "P=Q" | 
| 366 | by (iprover intro: iff [THEN mp, THEN mp] impI assms) | |
| 15411 | 367 | |
| 368 | lemma iffD2: "[| P=Q; Q |] ==> P" | |
| 18457 | 369 | by (erule ssubst) | 
| 15411 | 370 | |
| 371 | lemma rev_iffD2: "[| Q; P=Q |] ==> P" | |
| 18457 | 372 | by (erule iffD2) | 
| 15411 | 373 | |
| 21504 | 374 | lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P" | 
| 375 | by (drule sym) (rule iffD2) | |
| 376 | ||
| 377 | lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P" | |
| 378 | by (drule sym) (rule rev_iffD2) | |
| 15411 | 379 | |
| 380 | lemma iffE: | |
| 381 | assumes major: "P=Q" | |
| 21504 | 382 | and minor: "[| P --> Q; Q --> P |] ==> R" | 
| 18457 | 383 | shows R | 
| 384 | by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1]) | |
| 15411 | 385 | |
| 386 | ||
| 20944 | 387 | subsubsection {*True*}
 | 
| 15411 | 388 | |
| 389 | lemma TrueI: "True" | |
| 21504 | 390 | unfolding True_def by (rule refl) | 
| 15411 | 391 | |
| 21504 | 392 | lemma eqTrueI: "P ==> P = True" | 
| 18457 | 393 | by (iprover intro: iffI TrueI) | 
| 15411 | 394 | |
| 21504 | 395 | lemma eqTrueE: "P = True ==> P" | 
| 396 | by (erule iffD2) (rule TrueI) | |
| 15411 | 397 | |
| 398 | ||
| 20944 | 399 | subsubsection {*Universal quantifier*}
 | 
| 15411 | 400 | |
| 21504 | 401 | lemma allI: assumes "!!x::'a. P(x)" shows "ALL x. P(x)" | 
| 402 | unfolding All_def by (iprover intro: ext eqTrueI assms) | |
| 15411 | 403 | |
| 404 | lemma spec: "ALL x::'a. P(x) ==> P(x)" | |
| 405 | apply (unfold All_def) | |
| 406 | apply (rule eqTrueE) | |
| 407 | apply (erule fun_cong) | |
| 408 | done | |
| 409 | ||
| 410 | lemma allE: | |
| 411 | assumes major: "ALL x. P(x)" | |
| 21504 | 412 | and minor: "P(x) ==> R" | 
| 413 | shows R | |
| 414 | by (iprover intro: minor major [THEN spec]) | |
| 15411 | 415 | |
| 416 | lemma all_dupE: | |
| 417 | assumes major: "ALL x. P(x)" | |
| 21504 | 418 | and minor: "[| P(x); ALL x. P(x) |] ==> R" | 
| 419 | shows R | |
| 420 | by (iprover intro: minor major major [THEN spec]) | |
| 15411 | 421 | |
| 422 | ||
| 21504 | 423 | subsubsection {* False *}
 | 
| 424 | ||
| 425 | text {*
 | |
| 426 |   Depends upon @{text spec}; it is impossible to do propositional
 | |
| 427 | logic before quantifiers! | |
| 428 | *} | |
| 15411 | 429 | |
| 430 | lemma FalseE: "False ==> P" | |
| 21504 | 431 | apply (unfold False_def) | 
| 432 | apply (erule spec) | |
| 433 | done | |
| 15411 | 434 | |
| 21504 | 435 | lemma False_neq_True: "False = True ==> P" | 
| 436 | by (erule eqTrueE [THEN FalseE]) | |
| 15411 | 437 | |
| 438 | ||
| 21504 | 439 | subsubsection {* Negation *}
 | 
| 15411 | 440 | |
| 441 | lemma notI: | |
| 21504 | 442 | assumes "P ==> False" | 
| 15411 | 443 | shows "~P" | 
| 21504 | 444 | apply (unfold not_def) | 
| 445 | apply (iprover intro: impI assms) | |
| 446 | done | |
| 15411 | 447 | |
| 448 | lemma False_not_True: "False ~= True" | |
| 21504 | 449 | apply (rule notI) | 
| 450 | apply (erule False_neq_True) | |
| 451 | done | |
| 15411 | 452 | |
| 453 | lemma True_not_False: "True ~= False" | |
| 21504 | 454 | apply (rule notI) | 
| 455 | apply (drule sym) | |
| 456 | apply (erule False_neq_True) | |
| 457 | done | |
| 15411 | 458 | |
| 459 | lemma notE: "[| ~P; P |] ==> R" | |
| 21504 | 460 | apply (unfold not_def) | 
| 461 | apply (erule mp [THEN FalseE]) | |
| 462 | apply assumption | |
| 463 | done | |
| 15411 | 464 | |
| 21504 | 465 | lemma notI2: "(P \<Longrightarrow> \<not> Pa) \<Longrightarrow> (P \<Longrightarrow> Pa) \<Longrightarrow> \<not> P" | 
| 466 | by (erule notE [THEN notI]) (erule meta_mp) | |
| 15411 | 467 | |
| 468 | ||
| 20944 | 469 | subsubsection {*Implication*}
 | 
| 15411 | 470 | |
| 471 | lemma impE: | |
| 472 | assumes "P-->Q" "P" "Q ==> R" | |
| 473 | shows "R" | |
| 23553 | 474 | by (iprover intro: assms mp) | 
| 15411 | 475 | |
| 476 | (* Reduces Q to P-->Q, allowing substitution in P. *) | |
| 477 | lemma rev_mp: "[| P; P --> Q |] ==> Q" | |
| 17589 | 478 | by (iprover intro: mp) | 
| 15411 | 479 | |
| 480 | lemma contrapos_nn: | |
| 481 | assumes major: "~Q" | |
| 482 | and minor: "P==>Q" | |
| 483 | shows "~P" | |
| 17589 | 484 | by (iprover intro: notI minor major [THEN notE]) | 
| 15411 | 485 | |
| 486 | (*not used at all, but we already have the other 3 combinations *) | |
| 487 | lemma contrapos_pn: | |
| 488 | assumes major: "Q" | |
| 489 | and minor: "P ==> ~Q" | |
| 490 | shows "~P" | |
| 17589 | 491 | by (iprover intro: notI minor major notE) | 
| 15411 | 492 | |
| 493 | lemma not_sym: "t ~= s ==> s ~= t" | |
| 21250 | 494 | by (erule contrapos_nn) (erule sym) | 
| 495 | ||
| 496 | lemma eq_neq_eq_imp_neq: "[| x = a ; a ~= b; b = y |] ==> x ~= y" | |
| 497 | by (erule subst, erule ssubst, assumption) | |
| 15411 | 498 | |
| 499 | (*still used in HOLCF*) | |
| 500 | lemma rev_contrapos: | |
| 501 | assumes pq: "P ==> Q" | |
| 502 | and nq: "~Q" | |
| 503 | shows "~P" | |
| 504 | apply (rule nq [THEN contrapos_nn]) | |
| 505 | apply (erule pq) | |
| 506 | done | |
| 507 | ||
| 20944 | 508 | subsubsection {*Existential quantifier*}
 | 
| 15411 | 509 | |
| 510 | lemma exI: "P x ==> EX x::'a. P x" | |
| 511 | apply (unfold Ex_def) | |
| 17589 | 512 | apply (iprover intro: allI allE impI mp) | 
| 15411 | 513 | done | 
| 514 | ||
| 515 | lemma exE: | |
| 516 | assumes major: "EX x::'a. P(x)" | |
| 517 | and minor: "!!x. P(x) ==> Q" | |
| 518 | shows "Q" | |
| 519 | apply (rule major [unfolded Ex_def, THEN spec, THEN mp]) | |
| 17589 | 520 | apply (iprover intro: impI [THEN allI] minor) | 
| 15411 | 521 | done | 
| 522 | ||
| 523 | ||
| 20944 | 524 | subsubsection {*Conjunction*}
 | 
| 15411 | 525 | |
| 526 | lemma conjI: "[| P; Q |] ==> P&Q" | |
| 527 | apply (unfold and_def) | |
| 17589 | 528 | apply (iprover intro: impI [THEN allI] mp) | 
| 15411 | 529 | done | 
| 530 | ||
| 531 | lemma conjunct1: "[| P & Q |] ==> P" | |
| 532 | apply (unfold and_def) | |
| 17589 | 533 | apply (iprover intro: impI dest: spec mp) | 
| 15411 | 534 | done | 
| 535 | ||
| 536 | lemma conjunct2: "[| P & Q |] ==> Q" | |
| 537 | apply (unfold and_def) | |
| 17589 | 538 | apply (iprover intro: impI dest: spec mp) | 
| 15411 | 539 | done | 
| 540 | ||
| 541 | lemma conjE: | |
| 542 | assumes major: "P&Q" | |
| 543 | and minor: "[| P; Q |] ==> R" | |
| 544 | shows "R" | |
| 545 | apply (rule minor) | |
| 546 | apply (rule major [THEN conjunct1]) | |
| 547 | apply (rule major [THEN conjunct2]) | |
| 548 | done | |
| 549 | ||
| 550 | lemma context_conjI: | |
| 23553 | 551 | assumes "P" "P ==> Q" shows "P & Q" | 
| 552 | by (iprover intro: conjI assms) | |
| 15411 | 553 | |
| 554 | ||
| 20944 | 555 | subsubsection {*Disjunction*}
 | 
| 15411 | 556 | |
| 557 | lemma disjI1: "P ==> P|Q" | |
| 558 | apply (unfold or_def) | |
| 17589 | 559 | apply (iprover intro: allI impI mp) | 
| 15411 | 560 | done | 
| 561 | ||
| 562 | lemma disjI2: "Q ==> P|Q" | |
| 563 | apply (unfold or_def) | |
| 17589 | 564 | apply (iprover intro: allI impI mp) | 
| 15411 | 565 | done | 
| 566 | ||
| 567 | lemma disjE: | |
| 568 | assumes major: "P|Q" | |
| 569 | and minorP: "P ==> R" | |
| 570 | and minorQ: "Q ==> R" | |
| 571 | shows "R" | |
| 17589 | 572 | by (iprover intro: minorP minorQ impI | 
| 15411 | 573 | major [unfolded or_def, THEN spec, THEN mp, THEN mp]) | 
| 574 | ||
| 575 | ||
| 20944 | 576 | subsubsection {*Classical logic*}
 | 
| 15411 | 577 | |
| 578 | lemma classical: | |
| 579 | assumes prem: "~P ==> P" | |
| 580 | shows "P" | |
| 581 | apply (rule True_or_False [THEN disjE, THEN eqTrueE]) | |
| 582 | apply assumption | |
| 583 | apply (rule notI [THEN prem, THEN eqTrueI]) | |
| 584 | apply (erule subst) | |
| 585 | apply assumption | |
| 586 | done | |
| 587 | ||
| 588 | lemmas ccontr = FalseE [THEN classical, standard] | |
| 589 | ||
| 590 | (*notE with premises exchanged; it discharges ~R so that it can be used to | |
| 591 | make elimination rules*) | |
| 592 | lemma rev_notE: | |
| 593 | assumes premp: "P" | |
| 594 | and premnot: "~R ==> ~P" | |
| 595 | shows "R" | |
| 596 | apply (rule ccontr) | |
| 597 | apply (erule notE [OF premnot premp]) | |
| 598 | done | |
| 599 | ||
| 600 | (*Double negation law*) | |
| 601 | lemma notnotD: "~~P ==> P" | |
| 602 | apply (rule classical) | |
| 603 | apply (erule notE) | |
| 604 | apply assumption | |
| 605 | done | |
| 606 | ||
| 607 | lemma contrapos_pp: | |
| 608 | assumes p1: "Q" | |
| 609 | and p2: "~P ==> ~Q" | |
| 610 | shows "P" | |
| 17589 | 611 | by (iprover intro: classical p1 p2 notE) | 
| 15411 | 612 | |
| 613 | ||
| 20944 | 614 | subsubsection {*Unique existence*}
 | 
| 15411 | 615 | |
| 616 | lemma ex1I: | |
| 23553 | 617 | assumes "P a" "!!x. P(x) ==> x=a" | 
| 15411 | 618 | shows "EX! x. P(x)" | 
| 23553 | 619 | by (unfold Ex1_def, iprover intro: assms exI conjI allI impI) | 
| 15411 | 620 | |
| 621 | text{*Sometimes easier to use: the premises have no shared variables.  Safe!*}
 | |
| 622 | lemma ex_ex1I: | |
| 623 | assumes ex_prem: "EX x. P(x)" | |
| 624 | and eq: "!!x y. [| P(x); P(y) |] ==> x=y" | |
| 625 | shows "EX! x. P(x)" | |
| 17589 | 626 | by (iprover intro: ex_prem [THEN exE] ex1I eq) | 
| 15411 | 627 | |
| 628 | lemma ex1E: | |
| 629 | assumes major: "EX! x. P(x)" | |
| 630 | and minor: "!!x. [| P(x); ALL y. P(y) --> y=x |] ==> R" | |
| 631 | shows "R" | |
| 632 | apply (rule major [unfolded Ex1_def, THEN exE]) | |
| 633 | apply (erule conjE) | |
| 17589 | 634 | apply (iprover intro: minor) | 
| 15411 | 635 | done | 
| 636 | ||
| 637 | lemma ex1_implies_ex: "EX! x. P x ==> EX x. P x" | |
| 638 | apply (erule ex1E) | |
| 639 | apply (rule exI) | |
| 640 | apply assumption | |
| 641 | done | |
| 642 | ||
| 643 | ||
| 20944 | 644 | subsubsection {*THE: definite description operator*}
 | 
| 15411 | 645 | |
| 646 | lemma the_equality: | |
| 647 | assumes prema: "P a" | |
| 648 | and premx: "!!x. P x ==> x=a" | |
| 649 | shows "(THE x. P x) = a" | |
| 650 | apply (rule trans [OF _ the_eq_trivial]) | |
| 651 | apply (rule_tac f = "The" in arg_cong) | |
| 652 | apply (rule ext) | |
| 653 | apply (rule iffI) | |
| 654 | apply (erule premx) | |
| 655 | apply (erule ssubst, rule prema) | |
| 656 | done | |
| 657 | ||
| 658 | lemma theI: | |
| 659 | assumes "P a" and "!!x. P x ==> x=a" | |
| 660 | shows "P (THE x. P x)" | |
| 23553 | 661 | by (iprover intro: assms the_equality [THEN ssubst]) | 
| 15411 | 662 | |
| 663 | lemma theI': "EX! x. P x ==> P (THE x. P x)" | |
| 664 | apply (erule ex1E) | |
| 665 | apply (erule theI) | |
| 666 | apply (erule allE) | |
| 667 | apply (erule mp) | |
| 668 | apply assumption | |
| 669 | done | |
| 670 | ||
| 671 | (*Easier to apply than theI: only one occurrence of P*) | |
| 672 | lemma theI2: | |
| 673 | assumes "P a" "!!x. P x ==> x=a" "!!x. P x ==> Q x" | |
| 674 | shows "Q (THE x. P x)" | |
| 23553 | 675 | by (iprover intro: assms theI) | 
| 15411 | 676 | |
| 24553 | 677 | lemma the1I2: assumes "EX! x. P x" "\<And>x. P x \<Longrightarrow> Q x" shows "Q (THE x. P x)" | 
| 678 | by(iprover intro:assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)] | |
| 679 | elim:allE impE) | |
| 680 | ||
| 18697 | 681 | lemma the1_equality [elim?]: "[| EX!x. P x; P a |] ==> (THE x. P x) = a" | 
| 15411 | 682 | apply (rule the_equality) | 
| 683 | apply assumption | |
| 684 | apply (erule ex1E) | |
| 685 | apply (erule all_dupE) | |
| 686 | apply (drule mp) | |
| 687 | apply assumption | |
| 688 | apply (erule ssubst) | |
| 689 | apply (erule allE) | |
| 690 | apply (erule mp) | |
| 691 | apply assumption | |
| 692 | done | |
| 693 | ||
| 694 | lemma the_sym_eq_trivial: "(THE y. x=y) = x" | |
| 695 | apply (rule the_equality) | |
| 696 | apply (rule refl) | |
| 697 | apply (erule sym) | |
| 698 | done | |
| 699 | ||
| 700 | ||
| 20944 | 701 | subsubsection {*Classical intro rules for disjunction and existential quantifiers*}
 | 
| 15411 | 702 | |
| 703 | lemma disjCI: | |
| 704 | assumes "~Q ==> P" shows "P|Q" | |
| 705 | apply (rule classical) | |
| 23553 | 706 | apply (iprover intro: assms disjI1 disjI2 notI elim: notE) | 
| 15411 | 707 | done | 
| 708 | ||
| 709 | lemma excluded_middle: "~P | P" | |
| 17589 | 710 | by (iprover intro: disjCI) | 
| 15411 | 711 | |
| 20944 | 712 | text {*
 | 
| 713 | case distinction as a natural deduction rule. | |
| 714 |   Note that @{term "~P"} is the second case, not the first
 | |
| 715 | *} | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 716 | lemma case_split [case_names True False]: | 
| 15411 | 717 | assumes prem1: "P ==> Q" | 
| 718 | and prem2: "~P ==> Q" | |
| 719 | shows "Q" | |
| 720 | apply (rule excluded_middle [THEN disjE]) | |
| 721 | apply (erule prem2) | |
| 722 | apply (erule prem1) | |
| 723 | done | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 724 | |
| 15411 | 725 | (*Classical implies (-->) elimination. *) | 
| 726 | lemma impCE: | |
| 727 | assumes major: "P-->Q" | |
| 728 | and minor: "~P ==> R" "Q ==> R" | |
| 729 | shows "R" | |
| 730 | apply (rule excluded_middle [of P, THEN disjE]) | |
| 17589 | 731 | apply (iprover intro: minor major [THEN mp])+ | 
| 15411 | 732 | done | 
| 733 | ||
| 734 | (*This version of --> elimination works on Q before P. It works best for | |
| 735 | those cases in which P holds "almost everywhere". Can't install as | |
| 736 | default: would break old proofs.*) | |
| 737 | lemma impCE': | |
| 738 | assumes major: "P-->Q" | |
| 739 | and minor: "Q ==> R" "~P ==> R" | |
| 740 | shows "R" | |
| 741 | apply (rule excluded_middle [of P, THEN disjE]) | |
| 17589 | 742 | apply (iprover intro: minor major [THEN mp])+ | 
| 15411 | 743 | done | 
| 744 | ||
| 745 | (*Classical <-> elimination. *) | |
| 746 | lemma iffCE: | |
| 747 | assumes major: "P=Q" | |
| 748 | and minor: "[| P; Q |] ==> R" "[| ~P; ~Q |] ==> R" | |
| 749 | shows "R" | |
| 750 | apply (rule major [THEN iffE]) | |
| 17589 | 751 | apply (iprover intro: minor elim: impCE notE) | 
| 15411 | 752 | done | 
| 753 | ||
| 754 | lemma exCI: | |
| 755 | assumes "ALL x. ~P(x) ==> P(a)" | |
| 756 | shows "EX x. P(x)" | |
| 757 | apply (rule ccontr) | |
| 23553 | 758 | apply (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"]) | 
| 15411 | 759 | done | 
| 760 | ||
| 761 | ||
| 12386 | 762 | subsubsection {* Intuitionistic Reasoning *}
 | 
| 763 | ||
| 764 | lemma impE': | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 765 | assumes 1: "P --> Q" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 766 | and 2: "Q ==> R" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 767 | and 3: "P --> Q ==> P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 768 | shows R | 
| 12386 | 769 | proof - | 
| 770 | from 3 and 1 have P . | |
| 771 | with 1 have Q by (rule impE) | |
| 772 | with 2 show R . | |
| 773 | qed | |
| 774 | ||
| 775 | lemma allE': | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 776 | assumes 1: "ALL x. P x" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 777 | and 2: "P x ==> ALL x. P x ==> Q" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 778 | shows Q | 
| 12386 | 779 | proof - | 
| 780 | from 1 have "P x" by (rule spec) | |
| 781 | from this and 1 show Q by (rule 2) | |
| 782 | qed | |
| 783 | ||
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 784 | lemma notE': | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 785 | assumes 1: "~ P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 786 | and 2: "~ P ==> P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 787 | shows R | 
| 12386 | 788 | proof - | 
| 789 | from 2 and 1 have P . | |
| 790 | with 1 show R by (rule notE) | |
| 791 | qed | |
| 792 | ||
| 22444 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 793 | lemma TrueE: "True ==> P ==> P" . | 
| 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 794 | lemma notFalseE: "~ False ==> P ==> P" . | 
| 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 795 | |
| 22467 
c9357ef01168
TrueElim and notTrueElim tested and added as safe elim rules.
 dixon parents: 
22445diff
changeset | 796 | lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE | 
| 15801 | 797 | and [Pure.intro!] = iffI conjI impI TrueI notI allI refl | 
| 798 | and [Pure.elim 2] = allE notE' impE' | |
| 799 | and [Pure.intro] = exI disjI2 disjI1 | |
| 12386 | 800 | |
| 801 | lemmas [trans] = trans | |
| 802 | and [sym] = sym not_sym | |
| 15801 | 803 | and [Pure.elim?] = iffD1 iffD2 impE | 
| 11750 | 804 | |
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 805 | use "Tools/hologic.ML" | 
| 23553 | 806 | |
| 11438 
3d9222b80989
declare trans [trans]  (*overridden in theory Calculation*);
 wenzelm parents: 
11432diff
changeset | 807 | |
| 11750 | 808 | subsubsection {* Atomizing meta-level connectives *}
 | 
| 809 | ||
| 28513 | 810 | axiomatization where | 
| 811 | eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" (*admissible axiom*) | |
| 812 | ||
| 11750 | 813 | lemma atomize_all [atomize]: "(!!x. P x) == Trueprop (ALL x. P x)" | 
| 12003 | 814 | proof | 
| 9488 | 815 | assume "!!x. P x" | 
| 23389 | 816 | then show "ALL x. P x" .. | 
| 9488 | 817 | next | 
| 818 | assume "ALL x. P x" | |
| 23553 | 819 | then show "!!x. P x" by (rule allE) | 
| 9488 | 820 | qed | 
| 821 | ||
| 11750 | 822 | lemma atomize_imp [atomize]: "(A ==> B) == Trueprop (A --> B)" | 
| 12003 | 823 | proof | 
| 9488 | 824 | assume r: "A ==> B" | 
| 10383 | 825 | show "A --> B" by (rule impI) (rule r) | 
| 9488 | 826 | next | 
| 827 | assume "A --> B" and A | |
| 23553 | 828 | then show B by (rule mp) | 
| 9488 | 829 | qed | 
| 830 | ||
| 14749 | 831 | lemma atomize_not: "(A ==> False) == Trueprop (~A)" | 
| 832 | proof | |
| 833 | assume r: "A ==> False" | |
| 834 | show "~A" by (rule notI) (rule r) | |
| 835 | next | |
| 836 | assume "~A" and A | |
| 23553 | 837 | then show False by (rule notE) | 
| 14749 | 838 | qed | 
| 839 | ||
| 11750 | 840 | lemma atomize_eq [atomize]: "(x == y) == Trueprop (x = y)" | 
| 12003 | 841 | proof | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 842 | assume "x == y" | 
| 23553 | 843 | show "x = y" by (unfold `x == y`) (rule refl) | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 844 | next | 
| 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 845 | assume "x = y" | 
| 23553 | 846 | then show "x == y" by (rule eq_reflection) | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 847 | qed | 
| 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 848 | |
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 849 | lemma atomize_conj [atomize]: "(A &&& B) == Trueprop (A & B)" | 
| 12003 | 850 | proof | 
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 851 | assume conj: "A &&& B" | 
| 19121 | 852 | show "A & B" | 
| 853 | proof (rule conjI) | |
| 854 | from conj show A by (rule conjunctionD1) | |
| 855 | from conj show B by (rule conjunctionD2) | |
| 856 | qed | |
| 11953 | 857 | next | 
| 19121 | 858 | assume conj: "A & B" | 
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 859 | show "A &&& B" | 
| 19121 | 860 | proof - | 
| 861 | from conj show A .. | |
| 862 | from conj show B .. | |
| 11953 | 863 | qed | 
| 864 | qed | |
| 865 | ||
| 12386 | 866 | lemmas [symmetric, rulify] = atomize_all atomize_imp | 
| 18832 | 867 | and [symmetric, defn] = atomize_all atomize_imp atomize_eq | 
| 12386 | 868 | |
| 11750 | 869 | |
| 26580 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 870 | subsubsection {* Atomizing elimination rules *}
 | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 871 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 872 | setup AtomizeElim.setup | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 873 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 874 | lemma atomize_exL[atomize_elim]: "(!!x. P x ==> Q) == ((EX x. P x) ==> Q)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 875 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 876 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 877 | lemma atomize_conjL[atomize_elim]: "(A ==> B ==> C) == (A & B ==> C)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 878 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 879 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 880 | lemma atomize_disjL[atomize_elim]: "((A ==> C) ==> (B ==> C) ==> C) == ((A | B ==> C) ==> C)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 881 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 882 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 883 | lemma atomize_elimL[atomize_elim]: "(!!B. (A ==> B) ==> B) == Trueprop A" .. | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 884 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 885 | |
| 20944 | 886 | subsection {* Package setup *}
 | 
| 887 | ||
| 11750 | 888 | subsubsection {* Classical Reasoner setup *}
 | 
| 9529 | 889 | |
| 26411 | 890 | lemma imp_elim: "P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R" | 
| 891 | by (rule classical) iprover | |
| 892 | ||
| 893 | lemma swap: "~ P ==> (~ R ==> P) ==> R" | |
| 894 | by (rule classical) iprover | |
| 895 | ||
| 20944 | 896 | lemma thin_refl: | 
| 897 | "\<And>X. \<lbrakk> x=x; PROP W \<rbrakk> \<Longrightarrow> PROP W" . | |
| 898 | ||
| 21151 | 899 | ML {*
 | 
| 900 | structure Hypsubst = HypsubstFun( | |
| 901 | struct | |
| 902 | structure Simplifier = Simplifier | |
| 21218 | 903 | val dest_eq = HOLogic.dest_eq | 
| 21151 | 904 | val dest_Trueprop = HOLogic.dest_Trueprop | 
| 905 | val dest_imp = HOLogic.dest_imp | |
| 26411 | 906 |   val eq_reflection = @{thm eq_reflection}
 | 
| 907 |   val rev_eq_reflection = @{thm meta_eq_to_obj_eq}
 | |
| 908 |   val imp_intr = @{thm impI}
 | |
| 909 |   val rev_mp = @{thm rev_mp}
 | |
| 910 |   val subst = @{thm subst}
 | |
| 911 |   val sym = @{thm sym}
 | |
| 22129 | 912 |   val thin_refl = @{thm thin_refl};
 | 
| 27572 
67cd6ed76446
single_hyp(_meta)_subst_tac: Controlled substitution of a single hyp
 krauss parents: 
27338diff
changeset | 913 |   val prop_subst = @{lemma "PROP P t ==> PROP prop (x = t ==> PROP P x)"
 | 
| 
67cd6ed76446
single_hyp(_meta)_subst_tac: Controlled substitution of a single hyp
 krauss parents: 
27338diff
changeset | 914 | by (unfold prop_def) (drule eq_reflection, unfold)} | 
| 21151 | 915 | end); | 
| 21671 | 916 | open Hypsubst; | 
| 21151 | 917 | |
| 918 | structure Classical = ClassicalFun( | |
| 919 | struct | |
| 26411 | 920 |   val imp_elim = @{thm imp_elim}
 | 
| 921 |   val not_elim = @{thm notE}
 | |
| 922 |   val swap = @{thm swap}
 | |
| 923 |   val classical = @{thm classical}
 | |
| 21151 | 924 | val sizef = Drule.size_of_thm | 
| 925 | val hyp_subst_tacs = [Hypsubst.hyp_subst_tac] | |
| 926 | end); | |
| 927 | ||
| 928 | structure BasicClassical: BASIC_CLASSICAL = Classical; | |
| 21671 | 929 | open BasicClassical; | 
| 22129 | 930 | |
| 27338 | 931 | ML_Antiquote.value "claset" | 
| 932 | (Scan.succeed "Classical.local_claset_of (ML_Context.the_local_context ())"); | |
| 24035 | 933 | |
| 934 | structure ResAtpset = NamedThmsFun(val name = "atp" val description = "ATP rules"); | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 935 | |
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 936 | structure ResBlacklist = NamedThmsFun(val name = "noatp" val description = "theorems blacklisted for ATP"); | 
| 21151 | 937 | *} | 
| 938 | ||
| 25388 | 939 | text {*ResBlacklist holds theorems blacklisted to sledgehammer. 
 | 
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 940 | These theorems typically produce clauses that are prolific (match too many equality or | 
| 25388 | 941 | membership literals) and relate to seldom-used facts. Some duplicate other rules.*} | 
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 942 | |
| 21009 | 943 | setup {*
 | 
| 944 | let | |
| 945 | (*prevent substitution on bool*) | |
| 946 | fun hyp_subst_tac' i thm = if i <= Thm.nprems_of thm andalso | |
| 947 |     Term.exists_Const (fn ("op =", Type (_, [T, _])) => T <> Type ("bool", []) | _ => false)
 | |
| 948 | (nth (Thm.prems_of thm) (i - 1)) then Hypsubst.hyp_subst_tac i thm else no_tac thm; | |
| 949 | in | |
| 21151 | 950 | Hypsubst.hypsubst_setup | 
| 951 | #> ContextRules.addSWrapper (fn tac => hyp_subst_tac' ORELSE' tac) | |
| 952 | #> Classical.setup | |
| 953 | #> ResAtpset.setup | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 954 | #> ResBlacklist.setup | 
| 21009 | 955 | end | 
| 956 | *} | |
| 957 | ||
| 958 | declare iffI [intro!] | |
| 959 | and notI [intro!] | |
| 960 | and impI [intro!] | |
| 961 | and disjCI [intro!] | |
| 962 | and conjI [intro!] | |
| 963 | and TrueI [intro!] | |
| 964 | and refl [intro!] | |
| 965 | ||
| 966 | declare iffCE [elim!] | |
| 967 | and FalseE [elim!] | |
| 968 | and impCE [elim!] | |
| 969 | and disjE [elim!] | |
| 970 | and conjE [elim!] | |
| 971 | and conjE [elim!] | |
| 972 | ||
| 973 | declare ex_ex1I [intro!] | |
| 974 | and allI [intro!] | |
| 975 | and the_equality [intro] | |
| 976 | and exI [intro] | |
| 977 | ||
| 978 | declare exE [elim!] | |
| 979 | allE [elim] | |
| 980 | ||
| 22377 | 981 | ML {* val HOL_cs = @{claset} *}
 | 
| 19162 | 982 | |
| 20223 | 983 | lemma contrapos_np: "~ Q ==> (~ P ==> Q) ==> P" | 
| 984 | apply (erule swap) | |
| 985 | apply (erule (1) meta_mp) | |
| 986 | done | |
| 10383 | 987 | |
| 18689 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 988 | declare ex_ex1I [rule del, intro! 2] | 
| 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 989 | and ex1I [intro] | 
| 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 990 | |
| 12386 | 991 | lemmas [intro?] = ext | 
| 992 | and [elim?] = ex1_implies_ex | |
| 11977 | 993 | |
| 20944 | 994 | (*Better then ex1E for classical reasoner: needs no quantifier duplication!*) | 
| 20973 | 995 | lemma alt_ex1E [elim!]: | 
| 20944 | 996 | assumes major: "\<exists>!x. P x" | 
| 997 | and prem: "\<And>x. \<lbrakk> P x; \<forall>y y'. P y \<and> P y' \<longrightarrow> y = y' \<rbrakk> \<Longrightarrow> R" | |
| 998 | shows R | |
| 999 | apply (rule ex1E [OF major]) | |
| 1000 | apply (rule prem) | |
| 22129 | 1001 | apply (tactic {* ares_tac @{thms allI} 1 *})+
 | 
| 1002 | apply (tactic {* etac (Classical.dup_elim @{thm allE}) 1 *})
 | |
| 1003 | apply iprover | |
| 1004 | done | |
| 20944 | 1005 | |
| 21151 | 1006 | ML {*
 | 
| 25388 | 1007 | structure Blast = BlastFun | 
| 1008 | ( | |
| 21151 | 1009 | type claset = Classical.claset | 
| 22744 
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
 haftmann parents: 
22481diff
changeset | 1010 |   val equality_name = @{const_name "op ="}
 | 
| 22993 | 1011 |   val not_name = @{const_name Not}
 | 
| 26411 | 1012 |   val notE = @{thm notE}
 | 
| 1013 |   val ccontr = @{thm ccontr}
 | |
| 21151 | 1014 | val contr_tac = Classical.contr_tac | 
| 1015 | val dup_intr = Classical.dup_intr | |
| 1016 | val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac | |
| 21671 | 1017 | val claset = Classical.claset | 
| 21151 | 1018 | val rep_cs = Classical.rep_cs | 
| 1019 | val cla_modifiers = Classical.cla_modifiers | |
| 1020 | val cla_meth' = Classical.cla_meth' | |
| 25388 | 1021 | ); | 
| 21671 | 1022 | val Blast_tac = Blast.Blast_tac; | 
| 1023 | val blast_tac = Blast.blast_tac; | |
| 20944 | 1024 | *} | 
| 1025 | ||
| 21151 | 1026 | setup Blast.setup | 
| 1027 | ||
| 20944 | 1028 | |
| 1029 | subsubsection {* Simplifier *}
 | |
| 12281 | 1030 | |
| 1031 | lemma eta_contract_eq: "(%s. f s) = f" .. | |
| 1032 | ||
| 1033 | lemma simp_thms: | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1034 | shows not_not: "(~ ~ P) = P" | 
| 15354 | 1035 | and Not_eq_iff: "((~P) = (~Q)) = (P = Q)" | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1036 | and | 
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 1037 | "(P ~= Q) = (P = (~Q))" | 
| 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 1038 | "(P | ~P) = True" "(~P | P) = True" | 
| 12281 | 1039 | "(x = x) = True" | 
| 20944 | 1040 | and not_True_eq_False: "(\<not> True) = False" | 
| 1041 | and not_False_eq_True: "(\<not> False) = True" | |
| 1042 | and | |
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 1043 | "(~P) ~= P" "P ~= (~P)" | 
| 20944 | 1044 | "(True=P) = P" | 
| 1045 | and eq_True: "(P = True) = P" | |
| 1046 | and "(False=P) = (~P)" | |
| 1047 | and eq_False: "(P = False) = (\<not> P)" | |
| 1048 | and | |
| 12281 | 1049 | "(True --> P) = P" "(False --> P) = True" | 
| 1050 | "(P --> True) = True" "(P --> P) = True" | |
| 1051 | "(P --> False) = (~P)" "(P --> ~P) = (~P)" | |
| 1052 | "(P & True) = P" "(True & P) = P" | |
| 1053 | "(P & False) = False" "(False & P) = False" | |
| 1054 | "(P & P) = P" "(P & (P & Q)) = (P & Q)" | |
| 1055 | "(P & ~P) = False" "(~P & P) = False" | |
| 1056 | "(P | True) = True" "(True | P) = True" | |
| 1057 | "(P | False) = P" "(False | P) = P" | |
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 1058 | "(P | P) = P" "(P | (P | Q)) = (P | Q)" and | 
| 12281 | 1059 | "(ALL x. P) = P" "(EX x. P) = P" "EX x. x=t" "EX x. t=x" | 
| 1060 |     -- {* needed for the one-point-rule quantifier simplification procs *}
 | |
| 1061 |     -- {* essential for termination!! *} and
 | |
| 1062 | "!!P. (EX x. x=t & P(x)) = P(t)" | |
| 1063 | "!!P. (EX x. t=x & P(x)) = P(t)" | |
| 1064 | "!!P. (ALL x. x=t --> P(x)) = P(t)" | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1065 | "!!P. (ALL x. t=x --> P(x)) = P(t)" | 
| 17589 | 1066 | by (blast, blast, blast, blast, blast, iprover+) | 
| 13421 | 1067 | |
| 14201 | 1068 | lemma disj_absorb: "(A | A) = A" | 
| 1069 | by blast | |
| 1070 | ||
| 1071 | lemma disj_left_absorb: "(A | (A | B)) = (A | B)" | |
| 1072 | by blast | |
| 1073 | ||
| 1074 | lemma conj_absorb: "(A & A) = A" | |
| 1075 | by blast | |
| 1076 | ||
| 1077 | lemma conj_left_absorb: "(A & (A & B)) = (A & B)" | |
| 1078 | by blast | |
| 1079 | ||
| 12281 | 1080 | lemma eq_ac: | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1081 | shows eq_commute: "(a=b) = (b=a)" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1082 | and eq_left_commute: "(P=(Q=R)) = (Q=(P=R))" | 
| 17589 | 1083 | and eq_assoc: "((P=Q)=R) = (P=(Q=R))" by (iprover, blast+) | 
| 1084 | lemma neq_commute: "(a~=b) = (b~=a)" by iprover | |
| 12281 | 1085 | |
| 1086 | lemma conj_comms: | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1087 | shows conj_commute: "(P&Q) = (Q&P)" | 
| 17589 | 1088 | and conj_left_commute: "(P&(Q&R)) = (Q&(P&R))" by iprover+ | 
| 1089 | lemma conj_assoc: "((P&Q)&R) = (P&(Q&R))" by iprover | |
| 12281 | 1090 | |
| 19174 | 1091 | lemmas conj_ac = conj_commute conj_left_commute conj_assoc | 
| 1092 | ||
| 12281 | 1093 | lemma disj_comms: | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1094 | shows disj_commute: "(P|Q) = (Q|P)" | 
| 17589 | 1095 | and disj_left_commute: "(P|(Q|R)) = (Q|(P|R))" by iprover+ | 
| 1096 | lemma disj_assoc: "((P|Q)|R) = (P|(Q|R))" by iprover | |
| 12281 | 1097 | |
| 19174 | 1098 | lemmas disj_ac = disj_commute disj_left_commute disj_assoc | 
| 1099 | ||
| 17589 | 1100 | lemma conj_disj_distribL: "(P&(Q|R)) = (P&Q | P&R)" by iprover | 
| 1101 | lemma conj_disj_distribR: "((P|Q)&R) = (P&R | Q&R)" by iprover | |
| 12281 | 1102 | |
| 17589 | 1103 | lemma disj_conj_distribL: "(P|(Q&R)) = ((P|Q) & (P|R))" by iprover | 
| 1104 | lemma disj_conj_distribR: "((P&Q)|R) = ((P|R) & (Q|R))" by iprover | |
| 12281 | 1105 | |
| 17589 | 1106 | lemma imp_conjR: "(P --> (Q&R)) = ((P-->Q) & (P-->R))" by iprover | 
| 1107 | lemma imp_conjL: "((P&Q) -->R) = (P --> (Q --> R))" by iprover | |
| 1108 | lemma imp_disjL: "((P|Q) --> R) = ((P-->R)&(Q-->R))" by iprover | |
| 12281 | 1109 | |
| 1110 | text {* These two are specialized, but @{text imp_disj_not1} is useful in @{text "Auth/Yahalom"}. *}
 | |
| 1111 | lemma imp_disj_not1: "(P --> Q | R) = (~Q --> P --> R)" by blast | |
| 1112 | lemma imp_disj_not2: "(P --> Q | R) = (~R --> P --> Q)" by blast | |
| 1113 | ||
| 1114 | lemma imp_disj1: "((P-->Q)|R) = (P--> Q|R)" by blast | |
| 1115 | lemma imp_disj2: "(Q|(P-->R)) = (P--> Q|R)" by blast | |
| 1116 | ||
| 21151 | 1117 | lemma imp_cong: "(P = P') ==> (P' ==> (Q = Q')) ==> ((P --> Q) = (P' --> Q'))" | 
| 1118 | by iprover | |
| 1119 | ||
| 17589 | 1120 | lemma de_Morgan_disj: "(~(P | Q)) = (~P & ~Q)" by iprover | 
| 12281 | 1121 | lemma de_Morgan_conj: "(~(P & Q)) = (~P | ~Q)" by blast | 
| 1122 | lemma not_imp: "(~(P --> Q)) = (P & ~Q)" by blast | |
| 1123 | lemma not_iff: "(P~=Q) = (P = (~Q))" by blast | |
| 1124 | lemma disj_not1: "(~P | Q) = (P --> Q)" by blast | |
| 1125 | lemma disj_not2: "(P | ~Q) = (Q --> P)"  -- {* changes orientation :-( *}
 | |
| 1126 | by blast | |
| 1127 | lemma imp_conv_disj: "(P --> Q) = ((~P) | Q)" by blast | |
| 1128 | ||
| 17589 | 1129 | lemma iff_conv_conj_imp: "(P = Q) = ((P --> Q) & (Q --> P))" by iprover | 
| 12281 | 1130 | |
| 1131 | ||
| 1132 | lemma cases_simp: "((P --> Q) & (~P --> Q)) = Q" | |
| 1133 |   -- {* Avoids duplication of subgoals after @{text split_if}, when the true and false *}
 | |
| 1134 |   -- {* cases boil down to the same thing. *}
 | |
| 1135 | by blast | |
| 1136 | ||
| 1137 | lemma not_all: "(~ (! x. P(x))) = (? x.~P(x))" by blast | |
| 1138 | lemma imp_all: "((! x. P x) --> Q) = (? x. P x --> Q)" by blast | |
| 17589 | 1139 | lemma not_ex: "(~ (? x. P(x))) = (! x.~P(x))" by iprover | 
| 1140 | lemma imp_ex: "((? x. P x) --> Q) = (! x. P x --> Q)" by iprover | |
| 23403 | 1141 | lemma all_not_ex: "(ALL x. P x) = (~ (EX x. ~ P x ))" by blast | 
| 12281 | 1142 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 1143 | declare All_def [noatp] | 
| 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 1144 | |
| 17589 | 1145 | lemma ex_disj_distrib: "(? x. P(x) | Q(x)) = ((? x. P(x)) | (? x. Q(x)))" by iprover | 
| 1146 | lemma all_conj_distrib: "(!x. P(x) & Q(x)) = ((! x. P(x)) & (! x. Q(x)))" by iprover | |
| 12281 | 1147 | |
| 1148 | text {*
 | |
| 1149 |   \medskip The @{text "&"} congruence rule: not included by default!
 | |
| 1150 | May slow rewrite proofs down by as much as 50\% *} | |
| 1151 | ||
| 1152 | lemma conj_cong: | |
| 1153 | "(P = P') ==> (P' ==> (Q = Q')) ==> ((P & Q) = (P' & Q'))" | |
| 17589 | 1154 | by iprover | 
| 12281 | 1155 | |
| 1156 | lemma rev_conj_cong: | |
| 1157 | "(Q = Q') ==> (Q' ==> (P = P')) ==> ((P & Q) = (P' & Q'))" | |
| 17589 | 1158 | by iprover | 
| 12281 | 1159 | |
| 1160 | text {* The @{text "|"} congruence rule: not included by default! *}
 | |
| 1161 | ||
| 1162 | lemma disj_cong: | |
| 1163 | "(P = P') ==> (~P' ==> (Q = Q')) ==> ((P | Q) = (P' | Q'))" | |
| 1164 | by blast | |
| 1165 | ||
| 1166 | ||
| 1167 | text {* \medskip if-then-else rules *}
 | |
| 1168 | ||
| 1169 | lemma if_True: "(if True then x else y) = x" | |
| 1170 | by (unfold if_def) blast | |
| 1171 | ||
| 1172 | lemma if_False: "(if False then x else y) = y" | |
| 1173 | by (unfold if_def) blast | |
| 1174 | ||
| 1175 | lemma if_P: "P ==> (if P then x else y) = x" | |
| 1176 | by (unfold if_def) blast | |
| 1177 | ||
| 1178 | lemma if_not_P: "~P ==> (if P then x else y) = y" | |
| 1179 | by (unfold if_def) blast | |
| 1180 | ||
| 1181 | lemma split_if: "P (if Q then x else y) = ((Q --> P(x)) & (~Q --> P(y)))" | |
| 1182 | apply (rule case_split [of Q]) | |
| 15481 | 1183 | apply (simplesubst if_P) | 
| 1184 | prefer 3 apply (simplesubst if_not_P, blast+) | |
| 12281 | 1185 | done | 
| 1186 | ||
| 1187 | lemma split_if_asm: "P (if Q then x else y) = (~((Q & ~P x) | (~Q & ~P y)))" | |
| 15481 | 1188 | by (simplesubst split_if, blast) | 
| 12281 | 1189 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 1190 | lemmas if_splits [noatp] = split_if split_if_asm | 
| 12281 | 1191 | |
| 1192 | lemma if_cancel: "(if c then x else x) = x" | |
| 15481 | 1193 | by (simplesubst split_if, blast) | 
| 12281 | 1194 | |
| 1195 | lemma if_eq_cancel: "(if x = y then y else x) = x" | |
| 15481 | 1196 | by (simplesubst split_if, blast) | 
| 12281 | 1197 | |
| 1198 | lemma if_bool_eq_conj: "(if P then Q else R) = ((P-->Q) & (~P-->R))" | |
| 19796 | 1199 |   -- {* This form is useful for expanding @{text "if"}s on the RIGHT of the @{text "==>"} symbol. *}
 | 
| 12281 | 1200 | by (rule split_if) | 
| 1201 | ||
| 1202 | lemma if_bool_eq_disj: "(if P then Q else R) = ((P&Q) | (~P&R))" | |
| 19796 | 1203 |   -- {* And this form is useful for expanding @{text "if"}s on the LEFT. *}
 | 
| 15481 | 1204 | apply (simplesubst split_if, blast) | 
| 12281 | 1205 | done | 
| 1206 | ||
| 17589 | 1207 | lemma Eq_TrueI: "P ==> P == True" by (unfold atomize_eq) iprover | 
| 1208 | lemma Eq_FalseI: "~P ==> P == False" by (unfold atomize_eq) iprover | |
| 12281 | 1209 | |
| 15423 | 1210 | text {* \medskip let rules for simproc *}
 | 
| 1211 | ||
| 1212 | lemma Let_folded: "f x \<equiv> g x \<Longrightarrow> Let x f \<equiv> Let x g" | |
| 1213 | by (unfold Let_def) | |
| 1214 | ||
| 1215 | lemma Let_unfold: "f x \<equiv> g \<Longrightarrow> Let x f \<equiv> g" | |
| 1216 | by (unfold Let_def) | |
| 1217 | ||
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1218 | text {*
 | 
| 16999 | 1219 | The following copy of the implication operator is useful for | 
| 1220 | fine-tuning congruence rules. It instructs the simplifier to simplify | |
| 1221 | its premise. | |
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1222 | *} | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1223 | |
| 17197 | 1224 | constdefs | 
| 1225 | simp_implies :: "[prop, prop] => prop" (infixr "=simp=>" 1) | |
| 28562 | 1226 | [code del]: "simp_implies \<equiv> op ==>" | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1227 | |
| 18457 | 1228 | lemma simp_impliesI: | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1229 | assumes PQ: "(PROP P \<Longrightarrow> PROP Q)" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1230 | shows "PROP P =simp=> PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1231 | apply (unfold simp_implies_def) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1232 | apply (rule PQ) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1233 | apply assumption | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1234 | done | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1235 | |
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1236 | lemma simp_impliesE: | 
| 25388 | 1237 | assumes PQ: "PROP P =simp=> PROP Q" | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1238 | and P: "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1239 | and QR: "PROP Q \<Longrightarrow> PROP R" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1240 | shows "PROP R" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1241 | apply (rule QR) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1242 | apply (rule PQ [unfolded simp_implies_def]) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1243 | apply (rule P) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1244 | done | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1245 | |
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1246 | lemma simp_implies_cong: | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1247 | assumes PP' :"PROP P == PROP P'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1248 | and P'QQ': "PROP P' ==> (PROP Q == PROP Q')" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1249 | shows "(PROP P =simp=> PROP Q) == (PROP P' =simp=> PROP Q')" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1250 | proof (unfold simp_implies_def, rule equal_intr_rule) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1251 | assume PQ: "PROP P \<Longrightarrow> PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1252 | and P': "PROP P'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1253 | from PP' [symmetric] and P' have "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1254 | by (rule equal_elim_rule1) | 
| 23553 | 1255 | then have "PROP Q" by (rule PQ) | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1256 | with P'QQ' [OF P'] show "PROP Q'" by (rule equal_elim_rule1) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1257 | next | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1258 | assume P'Q': "PROP P' \<Longrightarrow> PROP Q'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1259 | and P: "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1260 | from PP' and P have P': "PROP P'" by (rule equal_elim_rule1) | 
| 23553 | 1261 | then have "PROP Q'" by (rule P'Q') | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1262 | with P'QQ' [OF P', symmetric] show "PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1263 | by (rule equal_elim_rule1) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1264 | qed | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1265 | |
| 20944 | 1266 | lemma uncurry: | 
| 1267 | assumes "P \<longrightarrow> Q \<longrightarrow> R" | |
| 1268 | shows "P \<and> Q \<longrightarrow> R" | |
| 23553 | 1269 | using assms by blast | 
| 20944 | 1270 | |
| 1271 | lemma iff_allI: | |
| 1272 | assumes "\<And>x. P x = Q x" | |
| 1273 | shows "(\<forall>x. P x) = (\<forall>x. Q x)" | |
| 23553 | 1274 | using assms by blast | 
| 20944 | 1275 | |
| 1276 | lemma iff_exI: | |
| 1277 | assumes "\<And>x. P x = Q x" | |
| 1278 | shows "(\<exists>x. P x) = (\<exists>x. Q x)" | |
| 23553 | 1279 | using assms by blast | 
| 20944 | 1280 | |
| 1281 | lemma all_comm: | |
| 1282 | "(\<forall>x y. P x y) = (\<forall>y x. P x y)" | |
| 1283 | by blast | |
| 1284 | ||
| 1285 | lemma ex_comm: | |
| 1286 | "(\<exists>x y. P x y) = (\<exists>y x. P x y)" | |
| 1287 | by blast | |
| 1288 | ||
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 1289 | use "Tools/simpdata.ML" | 
| 21671 | 1290 | ML {* open Simpdata *}
 | 
| 1291 | ||
| 21151 | 1292 | setup {*
 | 
| 1293 | Simplifier.method_setup Splitter.split_modifiers | |
| 26496 
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
 wenzelm parents: 
26411diff
changeset | 1294 | #> Simplifier.map_simpset (K Simpdata.simpset_simprocs) | 
| 21151 | 1295 | #> Splitter.setup | 
| 26496 
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
 wenzelm parents: 
26411diff
changeset | 1296 | #> clasimp_setup | 
| 21151 | 1297 | #> EqSubst.setup | 
| 1298 | *} | |
| 1299 | ||
| 24035 | 1300 | text {* Simproc for proving @{text "(y = x) == False"} from premise @{text "~(x = y)"}: *}
 | 
| 1301 | ||
| 1302 | simproc_setup neq ("x = y") = {* fn _ =>
 | |
| 1303 | let | |
| 1304 |   val neq_to_EQ_False = @{thm not_sym} RS @{thm Eq_FalseI};
 | |
| 1305 | fun is_neq eq lhs rhs thm = | |
| 1306 | (case Thm.prop_of thm of | |
| 1307 | _ $ (Not $ (eq' $ l' $ r')) => | |
| 1308 | Not = HOLogic.Not andalso eq' = eq andalso | |
| 1309 | r' aconv lhs andalso l' aconv rhs | |
| 1310 | | _ => false); | |
| 1311 | fun proc ss ct = | |
| 1312 | (case Thm.term_of ct of | |
| 1313 | eq $ lhs $ rhs => | |
| 1314 | (case find_first (is_neq eq lhs rhs) (Simplifier.prems_of_ss ss) of | |
| 1315 | SOME thm => SOME (thm RS neq_to_EQ_False) | |
| 1316 | | NONE => NONE) | |
| 1317 | | _ => NONE); | |
| 1318 | in proc end; | |
| 1319 | *} | |
| 1320 | ||
| 1321 | simproc_setup let_simp ("Let x f") = {*
 | |
| 1322 | let | |
| 1323 | val (f_Let_unfold, x_Let_unfold) = | |
| 28741 | 1324 |     let val [(_ $ (f $ x) $ _)] = prems_of @{thm Let_unfold}
 | 
| 24035 | 1325 |     in (cterm_of @{theory} f, cterm_of @{theory} x) end
 | 
| 1326 | val (f_Let_folded, x_Let_folded) = | |
| 28741 | 1327 |     let val [(_ $ (f $ x) $ _)] = prems_of @{thm Let_folded}
 | 
| 24035 | 1328 |     in (cterm_of @{theory} f, cterm_of @{theory} x) end;
 | 
| 1329 | val g_Let_folded = | |
| 28741 | 1330 |     let val [(_ $ _ $ (g $ _))] = prems_of @{thm Let_folded}
 | 
| 1331 |     in cterm_of @{theory} g end;
 | |
| 1332 | fun count_loose (Bound i) k = if i >= k then 1 else 0 | |
| 1333 | | count_loose (s $ t) k = count_loose s k + count_loose t k | |
| 1334 | | count_loose (Abs (_, _, t)) k = count_loose t (k + 1) | |
| 1335 | | count_loose _ _ = 0; | |
| 1336 |   fun is_trivial_let (Const (@{const_name Let}, _) $ x $ t) =
 | |
| 1337 | case t | |
| 1338 | of Abs (_, _, t') => count_loose t' 0 <= 1 | |
| 1339 | | _ => true; | |
| 1340 | in fn _ => fn ss => fn ct => if is_trivial_let (Thm.term_of ct) | |
| 1341 |   then SOME @{thm Let_def} (*no or one ocurrenc of bound variable*)
 | |
| 1342 | else let (*Norbert Schirmer's case*) | |
| 1343 | val ctxt = Simplifier.the_context ss; | |
| 1344 | val thy = ProofContext.theory_of ctxt; | |
| 1345 | val t = Thm.term_of ct; | |
| 1346 | val ([t'], ctxt') = Variable.import_terms false [t] ctxt; | |
| 1347 | in Option.map (hd o Variable.export ctxt' ctxt o single) | |
| 1348 |     (case t' of Const (@{const_name Let},_) $ x $ f => (* x and f are already in normal form *)
 | |
| 1349 | if is_Free x orelse is_Bound x orelse is_Const x | |
| 1350 |       then SOME @{thm Let_def}
 | |
| 1351 | else | |
| 1352 | let | |
| 1353 | val n = case f of (Abs (x, _, _)) => x | _ => "x"; | |
| 1354 | val cx = cterm_of thy x; | |
| 1355 |           val {T = xT, ...} = rep_cterm cx;
 | |
| 1356 | val cf = cterm_of thy f; | |
| 1357 | val fx_g = Simplifier.rewrite ss (Thm.capply cf cx); | |
| 1358 | val (_ $ _ $ g) = prop_of fx_g; | |
| 1359 | val g' = abstract_over (x,g); | |
| 1360 | in (if (g aconv g') | |
| 1361 | then | |
| 1362 | let | |
| 1363 | val rl = | |
| 1364 |                     cterm_instantiate [(f_Let_unfold, cf), (x_Let_unfold, cx)] @{thm Let_unfold};
 | |
| 1365 | in SOME (rl OF [fx_g]) end | |
| 1366 | else if Term.betapply (f, x) aconv g then NONE (*avoid identity conversion*) | |
| 1367 | else let | |
| 1368 | val abs_g'= Abs (n,xT,g'); | |
| 1369 | val g'x = abs_g'$x; | |
| 1370 | val g_g'x = symmetric (beta_conversion false (cterm_of thy g'x)); | |
| 1371 | val rl = cterm_instantiate | |
| 1372 | [(f_Let_folded, cterm_of thy f), (x_Let_folded, cx), | |
| 1373 | (g_Let_folded, cterm_of thy abs_g')] | |
| 1374 |                              @{thm Let_folded};
 | |
| 1375 | in SOME (rl OF [transitive fx_g g_g'x]) | |
| 1376 | end) | |
| 1377 | end | |
| 1378 | | _ => NONE) | |
| 1379 | end | |
| 1380 | end *} | |
| 24035 | 1381 | |
| 21151 | 1382 | lemma True_implies_equals: "(True \<Longrightarrow> PROP P) \<equiv> PROP P" | 
| 1383 | proof | |
| 23389 | 1384 | assume "True \<Longrightarrow> PROP P" | 
| 1385 | from this [OF TrueI] show "PROP P" . | |
| 21151 | 1386 | next | 
| 1387 | assume "PROP P" | |
| 23389 | 1388 | then show "PROP P" . | 
| 21151 | 1389 | qed | 
| 1390 | ||
| 1391 | lemma ex_simps: | |
| 1392 | "!!P Q. (EX x. P x & Q) = ((EX x. P x) & Q)" | |
| 1393 | "!!P Q. (EX x. P & Q x) = (P & (EX x. Q x))" | |
| 1394 | "!!P Q. (EX x. P x | Q) = ((EX x. P x) | Q)" | |
| 1395 | "!!P Q. (EX x. P | Q x) = (P | (EX x. Q x))" | |
| 1396 | "!!P Q. (EX x. P x --> Q) = ((ALL x. P x) --> Q)" | |
| 1397 | "!!P Q. (EX x. P --> Q x) = (P --> (EX x. Q x))" | |
| 1398 |   -- {* Miniscoping: pushing in existential quantifiers. *}
 | |
| 1399 | by (iprover | blast)+ | |
| 1400 | ||
| 1401 | lemma all_simps: | |
| 1402 | "!!P Q. (ALL x. P x & Q) = ((ALL x. P x) & Q)" | |
| 1403 | "!!P Q. (ALL x. P & Q x) = (P & (ALL x. Q x))" | |
| 1404 | "!!P Q. (ALL x. P x | Q) = ((ALL x. P x) | Q)" | |
| 1405 | "!!P Q. (ALL x. P | Q x) = (P | (ALL x. Q x))" | |
| 1406 | "!!P Q. (ALL x. P x --> Q) = ((EX x. P x) --> Q)" | |
| 1407 | "!!P Q. (ALL x. P --> Q x) = (P --> (ALL x. Q x))" | |
| 1408 |   -- {* Miniscoping: pushing in universal quantifiers. *}
 | |
| 1409 | by (iprover | blast)+ | |
| 15481 | 1410 | |
| 21671 | 1411 | lemmas [simp] = | 
| 1412 | triv_forall_equality (*prunes params*) | |
| 1413 | True_implies_equals (*prune asms `True'*) | |
| 1414 | if_True | |
| 1415 | if_False | |
| 1416 | if_cancel | |
| 1417 | if_eq_cancel | |
| 1418 | imp_disjL | |
| 20973 | 1419 | (*In general it seems wrong to add distributive laws by default: they | 
| 1420 | might cause exponential blow-up. But imp_disjL has been in for a while | |
| 1421 | and cannot be removed without affecting existing proofs. Moreover, | |
| 1422 | rewriting by "(P|Q --> R) = ((P-->R)&(Q-->R))" might be justified on the | |
| 1423 | grounds that it allows simplification of R in the two cases.*) | |
| 21671 | 1424 | conj_assoc | 
| 1425 | disj_assoc | |
| 1426 | de_Morgan_conj | |
| 1427 | de_Morgan_disj | |
| 1428 | imp_disj1 | |
| 1429 | imp_disj2 | |
| 1430 | not_imp | |
| 1431 | disj_not1 | |
| 1432 | not_all | |
| 1433 | not_ex | |
| 1434 | cases_simp | |
| 1435 | the_eq_trivial | |
| 1436 | the_sym_eq_trivial | |
| 1437 | ex_simps | |
| 1438 | all_simps | |
| 1439 | simp_thms | |
| 1440 | ||
| 1441 | lemmas [cong] = imp_cong simp_implies_cong | |
| 1442 | lemmas [split] = split_if | |
| 20973 | 1443 | |
| 22377 | 1444 | ML {* val HOL_ss = @{simpset} *}
 | 
| 20973 | 1445 | |
| 20944 | 1446 | text {* Simplifies x assuming c and y assuming ~c *}
 | 
| 1447 | lemma if_cong: | |
| 1448 | assumes "b = c" | |
| 1449 | and "c \<Longrightarrow> x = u" | |
| 1450 | and "\<not> c \<Longrightarrow> y = v" | |
| 1451 | shows "(if b then x else y) = (if c then u else v)" | |
| 23553 | 1452 | unfolding if_def using assms by simp | 
| 20944 | 1453 | |
| 1454 | text {* Prevents simplification of x and y:
 | |
| 1455 | faster and allows the execution of functional programs. *} | |
| 1456 | lemma if_weak_cong [cong]: | |
| 1457 | assumes "b = c" | |
| 1458 | shows "(if b then x else y) = (if c then x else y)" | |
| 23553 | 1459 | using assms by (rule arg_cong) | 
| 20944 | 1460 | |
| 1461 | text {* Prevents simplification of t: much faster *}
 | |
| 1462 | lemma let_weak_cong: | |
| 1463 | assumes "a = b" | |
| 1464 | shows "(let x = a in t x) = (let x = b in t x)" | |
| 23553 | 1465 | using assms by (rule arg_cong) | 
| 20944 | 1466 | |
| 1467 | text {* To tidy up the result of a simproc.  Only the RHS will be simplified. *}
 | |
| 1468 | lemma eq_cong2: | |
| 1469 | assumes "u = u'" | |
| 1470 | shows "(t \<equiv> u) \<equiv> (t \<equiv> u')" | |
| 23553 | 1471 | using assms by simp | 
| 20944 | 1472 | |
| 1473 | lemma if_distrib: | |
| 1474 | "f (if c then x else y) = (if c then f x else f y)" | |
| 1475 | by simp | |
| 1476 | ||
| 1477 | text {* This lemma restricts the effect of the rewrite rule u=v to the left-hand
 | |
| 21502 | 1478 |   side of an equality.  Used in @{text "{Integ,Real}/simproc.ML"} *}
 | 
| 20944 | 1479 | lemma restrict_to_left: | 
| 1480 | assumes "x = y" | |
| 1481 | shows "(x = z) = (y = z)" | |
| 23553 | 1482 | using assms by simp | 
| 20944 | 1483 | |
| 17459 | 1484 | |
| 20944 | 1485 | subsubsection {* Generic cases and induction *}
 | 
| 17459 | 1486 | |
| 20944 | 1487 | text {* Rule projections: *}
 | 
| 18887 | 1488 | |
| 20944 | 1489 | ML {*
 | 
| 1490 | structure ProjectRule = ProjectRuleFun | |
| 25388 | 1491 | ( | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1492 |   val conjunct1 = @{thm conjunct1}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1493 |   val conjunct2 = @{thm conjunct2}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1494 |   val mp = @{thm mp}
 | 
| 25388 | 1495 | ) | 
| 17459 | 1496 | *} | 
| 1497 | ||
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1498 | constdefs | 
| 18457 | 1499 | induct_forall where "induct_forall P == \<forall>x. P x" | 
| 1500 | induct_implies where "induct_implies A B == A \<longrightarrow> B" | |
| 1501 | induct_equal where "induct_equal x y == x = y" | |
| 1502 | induct_conj where "induct_conj A B == A \<and> B" | |
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1503 | |
| 11989 | 1504 | lemma induct_forall_eq: "(!!x. P x) == Trueprop (induct_forall (\<lambda>x. P x))" | 
| 18457 | 1505 | by (unfold atomize_all induct_forall_def) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1506 | |
| 11989 | 1507 | lemma induct_implies_eq: "(A ==> B) == Trueprop (induct_implies A B)" | 
| 18457 | 1508 | by (unfold atomize_imp induct_implies_def) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1509 | |
| 11989 | 1510 | lemma induct_equal_eq: "(x == y) == Trueprop (induct_equal x y)" | 
| 18457 | 1511 | by (unfold atomize_eq induct_equal_def) | 
| 1512 | ||
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 1513 | lemma induct_conj_eq: "(A &&& B) == Trueprop (induct_conj A B)" | 
| 18457 | 1514 | by (unfold atomize_conj induct_conj_def) | 
| 1515 | ||
| 1516 | lemmas induct_atomize = induct_forall_eq induct_implies_eq induct_equal_eq induct_conj_eq | |
| 1517 | lemmas induct_rulify [symmetric, standard] = induct_atomize | |
| 1518 | lemmas induct_rulify_fallback = | |
| 1519 | induct_forall_def induct_implies_def induct_equal_def induct_conj_def | |
| 1520 | ||
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1521 | |
| 11989 | 1522 | lemma induct_forall_conj: "induct_forall (\<lambda>x. induct_conj (A x) (B x)) = | 
| 1523 | induct_conj (induct_forall A) (induct_forall B)" | |
| 17589 | 1524 | by (unfold induct_forall_def induct_conj_def) iprover | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1525 | |
| 11989 | 1526 | lemma induct_implies_conj: "induct_implies C (induct_conj A B) = | 
| 1527 | induct_conj (induct_implies C A) (induct_implies C B)" | |
| 17589 | 1528 | by (unfold induct_implies_def induct_conj_def) iprover | 
| 11989 | 1529 | |
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1530 | lemma induct_conj_curry: "(induct_conj A B ==> PROP C) == (A ==> B ==> PROP C)" | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1531 | proof | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1532 | assume r: "induct_conj A B ==> PROP C" and A B | 
| 18457 | 1533 | show "PROP C" by (rule r) (simp add: induct_conj_def `A` `B`) | 
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1534 | next | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1535 | assume r: "A ==> B ==> PROP C" and "induct_conj A B" | 
| 18457 | 1536 | show "PROP C" by (rule r) (simp_all add: `induct_conj A B` [unfolded induct_conj_def]) | 
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1537 | qed | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1538 | |
| 11989 | 1539 | lemmas induct_conj = induct_forall_conj induct_implies_conj induct_conj_curry | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1540 | |
| 11989 | 1541 | hide const induct_forall induct_implies induct_equal induct_conj | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1542 | |
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1543 | text {* Method setup. *}
 | 
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1544 | |
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1545 | ML {*
 | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1546 | structure Induct = InductFun | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1547 | ( | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1548 |   val cases_default = @{thm case_split}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1549 |   val atomize = @{thms induct_atomize}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1550 |   val rulify = @{thms induct_rulify}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1551 |   val rulify_fallback = @{thms induct_rulify_fallback}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1552 | ) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1553 | *} | 
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1554 | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: 
24748diff
changeset | 1555 | setup Induct.setup | 
| 18457 | 1556 | |
| 27326 
d3beec370964
moved src/HOL/Tools/induct_tacs.ML to src/Tools/induct_tacs.ML;
 wenzelm parents: 
27212diff
changeset | 1557 | use "~~/src/Tools/induct_tacs.ML" | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1558 | setup InductTacs.setup | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1559 | |
| 20944 | 1560 | |
| 28325 | 1561 | subsubsection {* Coherent logic *}
 | 
| 1562 | ||
| 1563 | ML {*
 | |
| 1564 | structure Coherent = CoherentFun | |
| 1565 | ( | |
| 1566 |   val atomize_elimL = @{thm atomize_elimL}
 | |
| 1567 |   val atomize_exL = @{thm atomize_exL}
 | |
| 1568 |   val atomize_conjL = @{thm atomize_conjL}
 | |
| 1569 |   val atomize_disjL = @{thm atomize_disjL}
 | |
| 1570 | val operator_names = | |
| 1571 |     [@{const_name "op |"}, @{const_name "op &"}, @{const_name "Ex"}]
 | |
| 1572 | ); | |
| 1573 | *} | |
| 1574 | ||
| 1575 | setup Coherent.setup | |
| 1576 | ||
| 1577 | ||
| 20944 | 1578 | subsection {* Other simple lemmas and lemma duplicates *}
 | 
| 1579 | ||
| 24166 | 1580 | lemma Let_0 [simp]: "Let 0 f = f 0" | 
| 1581 | unfolding Let_def .. | |
| 1582 | ||
| 1583 | lemma Let_1 [simp]: "Let 1 f = f 1" | |
| 1584 | unfolding Let_def .. | |
| 1585 | ||
| 20944 | 1586 | lemma ex1_eq [iff]: "EX! x. x = t" "EX! x. t = x" | 
| 1587 | by blast+ | |
| 1588 | ||
| 1589 | lemma choice_eq: "(ALL x. EX! y. P x y) = (EX! f. ALL x. P x (f x))" | |
| 1590 | apply (rule iffI) | |
| 1591 | apply (rule_tac a = "%x. THE y. P x y" in ex1I) | |
| 1592 | apply (fast dest!: theI') | |
| 1593 | apply (fast intro: ext the1_equality [symmetric]) | |
| 1594 | apply (erule ex1E) | |
| 1595 | apply (rule allI) | |
| 1596 | apply (rule ex1I) | |
| 1597 | apply (erule spec) | |
| 1598 | apply (erule_tac x = "%z. if z = x then y else f z" in allE) | |
| 1599 | apply (erule impE) | |
| 1600 | apply (rule allI) | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1601 | apply (case_tac "xa = x") | 
| 20944 | 1602 | apply (drule_tac [3] x = x in fun_cong, simp_all) | 
| 1603 | done | |
| 1604 | ||
| 1605 | lemma mk_left_commute: | |
| 21547 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21524diff
changeset | 1606 | fixes f (infix "\<otimes>" 60) | 
| 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21524diff
changeset | 1607 | assumes a: "\<And>x y z. (x \<otimes> y) \<otimes> z = x \<otimes> (y \<otimes> z)" and | 
| 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21524diff
changeset | 1608 | c: "\<And>x y. x \<otimes> y = y \<otimes> x" | 
| 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 haftmann parents: 
21524diff
changeset | 1609 | shows "x \<otimes> (y \<otimes> z) = y \<otimes> (x \<otimes> z)" | 
| 20944 | 1610 | by (rule trans [OF trans [OF c a] arg_cong [OF c, of "f y"]]) | 
| 1611 | ||
| 22218 | 1612 | lemmas eq_sym_conv = eq_commute | 
| 1613 | ||
| 23037 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1614 | lemma nnf_simps: | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1615 | "(\<not>(P \<and> Q)) = (\<not> P \<or> \<not> Q)" "(\<not> (P \<or> Q)) = (\<not> P \<and> \<not>Q)" "(P \<longrightarrow> Q) = (\<not>P \<or> Q)" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1616 | "(P = Q) = ((P \<and> Q) \<or> (\<not>P \<and> \<not> Q))" "(\<not>(P = Q)) = ((P \<and> \<not> Q) \<or> (\<not>P \<and> Q))" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1617 | "(\<not> \<not>(P)) = P" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1618 | by blast+ | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1619 | |
| 21671 | 1620 | |
| 1621 | subsection {* Basic ML bindings *}
 | |
| 1622 | ||
| 1623 | ML {*
 | |
| 22129 | 1624 | val FalseE = @{thm FalseE}
 | 
| 1625 | val Let_def = @{thm Let_def}
 | |
| 1626 | val TrueI = @{thm TrueI}
 | |
| 1627 | val allE = @{thm allE}
 | |
| 1628 | val allI = @{thm allI}
 | |
| 1629 | val all_dupE = @{thm all_dupE}
 | |
| 1630 | val arg_cong = @{thm arg_cong}
 | |
| 1631 | val box_equals = @{thm box_equals}
 | |
| 1632 | val ccontr = @{thm ccontr}
 | |
| 1633 | val classical = @{thm classical}
 | |
| 1634 | val conjE = @{thm conjE}
 | |
| 1635 | val conjI = @{thm conjI}
 | |
| 1636 | val conjunct1 = @{thm conjunct1}
 | |
| 1637 | val conjunct2 = @{thm conjunct2}
 | |
| 1638 | val disjCI = @{thm disjCI}
 | |
| 1639 | val disjE = @{thm disjE}
 | |
| 1640 | val disjI1 = @{thm disjI1}
 | |
| 1641 | val disjI2 = @{thm disjI2}
 | |
| 1642 | val eq_reflection = @{thm eq_reflection}
 | |
| 1643 | val ex1E = @{thm ex1E}
 | |
| 1644 | val ex1I = @{thm ex1I}
 | |
| 1645 | val ex1_implies_ex = @{thm ex1_implies_ex}
 | |
| 1646 | val exE = @{thm exE}
 | |
| 1647 | val exI = @{thm exI}
 | |
| 1648 | val excluded_middle = @{thm excluded_middle}
 | |
| 1649 | val ext = @{thm ext}
 | |
| 1650 | val fun_cong = @{thm fun_cong}
 | |
| 1651 | val iffD1 = @{thm iffD1}
 | |
| 1652 | val iffD2 = @{thm iffD2}
 | |
| 1653 | val iffI = @{thm iffI}
 | |
| 1654 | val impE = @{thm impE}
 | |
| 1655 | val impI = @{thm impI}
 | |
| 1656 | val meta_eq_to_obj_eq = @{thm meta_eq_to_obj_eq}
 | |
| 1657 | val mp = @{thm mp}
 | |
| 1658 | val notE = @{thm notE}
 | |
| 1659 | val notI = @{thm notI}
 | |
| 1660 | val not_all = @{thm not_all}
 | |
| 1661 | val not_ex = @{thm not_ex}
 | |
| 1662 | val not_iff = @{thm not_iff}
 | |
| 1663 | val not_not = @{thm not_not}
 | |
| 1664 | val not_sym = @{thm not_sym}
 | |
| 1665 | val refl = @{thm refl}
 | |
| 1666 | val rev_mp = @{thm rev_mp}
 | |
| 1667 | val spec = @{thm spec}
 | |
| 1668 | val ssubst = @{thm ssubst}
 | |
| 1669 | val subst = @{thm subst}
 | |
| 1670 | val sym = @{thm sym}
 | |
| 1671 | val trans = @{thm trans}
 | |
| 21671 | 1672 | *} | 
| 1673 | ||
| 1674 | ||
| 28400 | 1675 | subsection {* Code generator basics -- see further theory @{text "Code_Setup"} *}
 | 
| 1676 | ||
| 1677 | text {* Equality *}
 | |
| 24844 
98c006a30218
certificates for code generator case expressions
 haftmann parents: 
24842diff
changeset | 1678 | |
| 29608 | 1679 | class eq = | 
| 26513 | 1680 | fixes eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool" | 
| 28400 | 1681 | assumes eq_equals: "eq x y \<longleftrightarrow> x = y" | 
| 26513 | 1682 | begin | 
| 1683 | ||
| 28346 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1684 | lemma eq: "eq = (op =)" | 
| 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1685 | by (rule ext eq_equals)+ | 
| 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1686 | |
| 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1687 | lemma eq_refl: "eq x x \<longleftrightarrow> True" | 
| 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1688 | unfolding eq by rule+ | 
| 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1689 | |
| 26513 | 1690 | end | 
| 1691 | ||
| 28513 | 1692 | text {* Module setup *}
 | 
| 1693 | ||
| 29505 | 1694 | use "Tools/recfun_codegen.ML" | 
| 28513 | 1695 | |
| 1696 | setup {*
 | |
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28562diff
changeset | 1697 | Code_ML.setup | 
| 28513 | 1698 | #> Code_Haskell.setup | 
| 1699 | #> Nbe.setup | |
| 1700 | #> Codegen.setup | |
| 1701 | #> RecfunCodegen.setup | |
| 1702 | *} | |
| 1703 | ||
| 23247 | 1704 | |
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1705 | subsection {* Nitpick theorem store *}
 | 
| 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1706 | |
| 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1707 | ML {*
 | 
| 29866 
6e93ae65c678
Added Nitpick_Const_Psimp attribute, dropped the 's' in Nitpick_Const_Simps, and killed the Nitpick_Ind_Intros attribute.
 blanchet parents: 
29863diff
changeset | 1708 | structure Nitpick_Const_Simp_Thms = NamedThmsFun | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1709 | ( | 
| 29866 
6e93ae65c678
Added Nitpick_Const_Psimp attribute, dropped the 's' in Nitpick_Const_Simps, and killed the Nitpick_Ind_Intros attribute.
 blanchet parents: 
29863diff
changeset | 1710 | val name = "nitpick_const_simp" | 
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 1711 | val description = "equational specification of constants as needed by Nitpick" | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1712 | ) | 
| 29866 
6e93ae65c678
Added Nitpick_Const_Psimp attribute, dropped the 's' in Nitpick_Const_Simps, and killed the Nitpick_Ind_Intros attribute.
 blanchet parents: 
29863diff
changeset | 1713 | structure Nitpick_Const_Psimp_Thms = NamedThmsFun | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1714 | ( | 
| 29866 
6e93ae65c678
Added Nitpick_Const_Psimp attribute, dropped the 's' in Nitpick_Const_Simps, and killed the Nitpick_Ind_Intros attribute.
 blanchet parents: 
29863diff
changeset | 1715 | val name = "nitpick_const_psimp" | 
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 1716 | val description = "partial equational specification of constants as needed by Nitpick" | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1717 | ) | 
| 29868 | 1718 | structure Nitpick_Ind_Intro_Thms = NamedThmsFun | 
| 1719 | ( | |
| 1720 | val name = "nitpick_ind_intro" | |
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 1721 | val description = "introduction rules for (co)inductive predicates as needed by Nitpick" | 
| 29868 | 1722 | ) | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1723 | *} | 
| 29866 
6e93ae65c678
Added Nitpick_Const_Psimp attribute, dropped the 's' in Nitpick_Const_Simps, and killed the Nitpick_Ind_Intros attribute.
 blanchet parents: 
29863diff
changeset | 1724 | setup {* Nitpick_Const_Simp_Thms.setup
 | 
| 29868 | 1725 | #> Nitpick_Const_Psimp_Thms.setup | 
| 1726 | #> Nitpick_Ind_Intro_Thms.setup *} | |
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1727 | |
| 22839 | 1728 | subsection {* Legacy tactics and ML bindings *}
 | 
| 21671 | 1729 | |
| 1730 | ML {*
 | |
| 1731 | fun strip_tac i = REPEAT (resolve_tac [impI, allI] i); | |
| 1732 | ||
| 1733 | (* combination of (spec RS spec RS ...(j times) ... spec RS mp) *) | |
| 1734 | local | |
| 1735 |   fun wrong_prem (Const ("All", _) $ (Abs (_, _, t))) = wrong_prem t
 | |
| 1736 | | wrong_prem (Bound _) = true | |
| 1737 | | wrong_prem _ = false; | |
| 1738 | val filter_right = filter (not o wrong_prem o HOLogic.dest_Trueprop o hd o Thm.prems_of); | |
| 1739 | in | |
| 1740 | fun smp i = funpow i (fn m => filter_right ([spec] RL m)) ([mp]); | |
| 1741 | fun smp_tac j = EVERY'[dresolve_tac (smp j), atac]; | |
| 1742 | end; | |
| 22839 | 1743 | |
| 1744 | val all_conj_distrib = thm "all_conj_distrib"; | |
| 1745 | val all_simps = thms "all_simps"; | |
| 1746 | val atomize_not = thm "atomize_not"; | |
| 24830 
a7b3ab44d993
moved Pure/Isar/induct_attrib.ML and Provers/induct_method.ML to Tools/induct.ML;
 wenzelm parents: 
24748diff
changeset | 1747 | val case_split = thm "case_split"; | 
| 22839 | 1748 | val cases_simp = thm "cases_simp"; | 
| 1749 | val choice_eq = thm "choice_eq" | |
| 1750 | val cong = thm "cong" | |
| 1751 | val conj_comms = thms "conj_comms"; | |
| 1752 | val conj_cong = thm "conj_cong"; | |
| 1753 | val de_Morgan_conj = thm "de_Morgan_conj"; | |
| 1754 | val de_Morgan_disj = thm "de_Morgan_disj"; | |
| 1755 | val disj_assoc = thm "disj_assoc"; | |
| 1756 | val disj_comms = thms "disj_comms"; | |
| 1757 | val disj_cong = thm "disj_cong"; | |
| 1758 | val eq_ac = thms "eq_ac"; | |
| 1759 | val eq_cong2 = thm "eq_cong2" | |
| 1760 | val Eq_FalseI = thm "Eq_FalseI"; | |
| 1761 | val Eq_TrueI = thm "Eq_TrueI"; | |
| 1762 | val Ex1_def = thm "Ex1_def" | |
| 1763 | val ex_disj_distrib = thm "ex_disj_distrib"; | |
| 1764 | val ex_simps = thms "ex_simps"; | |
| 1765 | val if_cancel = thm "if_cancel"; | |
| 1766 | val if_eq_cancel = thm "if_eq_cancel"; | |
| 1767 | val if_False = thm "if_False"; | |
| 1768 | val iff_conv_conj_imp = thm "iff_conv_conj_imp"; | |
| 1769 | val iff = thm "iff" | |
| 1770 | val if_splits = thms "if_splits"; | |
| 1771 | val if_True = thm "if_True"; | |
| 1772 | val if_weak_cong = thm "if_weak_cong" | |
| 1773 | val imp_all = thm "imp_all"; | |
| 1774 | val imp_cong = thm "imp_cong"; | |
| 1775 | val imp_conjL = thm "imp_conjL"; | |
| 1776 | val imp_conjR = thm "imp_conjR"; | |
| 1777 | val imp_conv_disj = thm "imp_conv_disj"; | |
| 1778 | val simp_implies_def = thm "simp_implies_def"; | |
| 1779 | val simp_thms = thms "simp_thms"; | |
| 1780 | val split_if = thm "split_if"; | |
| 1781 | val the1_equality = thm "the1_equality" | |
| 1782 | val theI = thm "theI" | |
| 1783 | val theI' = thm "theI'" | |
| 1784 | val True_implies_equals = thm "True_implies_equals"; | |
| 23037 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1785 | val nnf_conv = Simplifier.rewrite (HOL_basic_ss addsimps simp_thms @ @{thms "nnf_simps"})
 | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1786 | |
| 21671 | 1787 | *} | 
| 1788 | ||
| 14357 | 1789 | end |