author | wenzelm |
Sat, 18 Jan 2025 13:20:47 +0100 | |
changeset 81913 | 5b9aca9b073b |
parent 81706 | 7beb0cf38292 |
child 81954 | 6f2bcdfa9a19 |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/HOL.thy |
11750 | 2 |
Author: Tobias Nipkow, Markus Wenzel, and Larry Paulson |
3 |
*) |
|
923 | 4 |
|
60758 | 5 |
section \<open>The basis of Higher-Order Logic\<close> |
923 | 6 |
|
15131 | 7 |
theory HOL |
70853 | 8 |
imports Pure Tools.Code_Generator |
46950
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents:
46497
diff
changeset
|
9 |
keywords |
52432 | 10 |
"try" "solve_direct" "quickcheck" "print_coercions" "print_claset" |
11 |
"print_induct_rules" :: diag and |
|
47657
1ba213363d0c
moved modules with only vague relation to the code generator to theory HOL rather than theory Code_Generator
haftmann
parents:
46973
diff
changeset
|
12 |
"quickcheck_params" :: thy_decl |
71833
ff6f3b09b8b4
abbrevs for the Uniq quantifier; trying Sup_nat_def to allow zero (experimentally)
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
13 |
abbrevs "?<" = "\<exists>\<^sub>\<le>\<^sub>1" |
15131 | 14 |
begin |
2260 | 15 |
|
69605 | 16 |
ML_file \<open>~~/src/Tools/misc_legacy.ML\<close> |
17 |
ML_file \<open>~~/src/Tools/try.ML\<close> |
|
18 |
ML_file \<open>~~/src/Tools/quickcheck.ML\<close> |
|
19 |
ML_file \<open>~~/src/Tools/solve_direct.ML\<close> |
|
20 |
ML_file \<open>~~/src/Tools/IsaPlanner/zipper.ML\<close> |
|
21 |
ML_file \<open>~~/src/Tools/IsaPlanner/isand.ML\<close> |
|
22 |
ML_file \<open>~~/src/Tools/IsaPlanner/rw_inst.ML\<close> |
|
23 |
ML_file \<open>~~/src/Provers/hypsubst.ML\<close> |
|
24 |
ML_file \<open>~~/src/Provers/splitter.ML\<close> |
|
25 |
ML_file \<open>~~/src/Provers/classical.ML\<close> |
|
26 |
ML_file \<open>~~/src/Provers/blast.ML\<close> |
|
27 |
ML_file \<open>~~/src/Provers/clasimp.ML\<close> |
|
28 |
ML_file \<open>~~/src/Tools/eqsubst.ML\<close> |
|
29 |
ML_file \<open>~~/src/Provers/quantifier1.ML\<close> |
|
30 |
ML_file \<open>~~/src/Tools/atomize_elim.ML\<close> |
|
31 |
ML_file \<open>~~/src/Tools/cong_tac.ML\<close> |
|
32 |
ML_file \<open>~~/src/Tools/intuitionistic.ML\<close> setup \<open>Intuitionistic.method_setup \<^binding>\<open>iprover\<close>\<close> |
|
33 |
ML_file \<open>~~/src/Tools/project_rule.ML\<close> |
|
34 |
ML_file \<open>~~/src/Tools/subtyping.ML\<close> |
|
35 |
ML_file \<open>~~/src/Tools/case_product.ML\<close> |
|
48891 | 36 |
|
30165
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
wenzelm
parents:
30160
diff
changeset
|
37 |
|
67149 | 38 |
ML \<open>Plugin_Name.declare_setup \<^binding>\<open>extraction\<close>\<close> |
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
39 |
|
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
40 |
ML \<open> |
67149 | 41 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_random\<close>; |
42 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_exhaustive\<close>; |
|
43 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_bounded_forall\<close>; |
|
44 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_full_exhaustive\<close>; |
|
45 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_narrowing\<close>; |
|
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
46 |
\<close> |
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
47 |
ML \<open> |
67149 | 48 |
Plugin_Name.define_setup \<^binding>\<open>quickcheck\<close> |
69593 | 49 |
[\<^plugin>\<open>quickcheck_exhaustive\<close>, |
50 |
\<^plugin>\<open>quickcheck_random\<close>, |
|
51 |
\<^plugin>\<open>quickcheck_bounded_forall\<close>, |
|
52 |
\<^plugin>\<open>quickcheck_full_exhaustive\<close>, |
|
53 |
\<^plugin>\<open>quickcheck_narrowing\<close>] |
|
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
54 |
\<close> |
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
55 |
|
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
56 |
|
60758 | 57 |
subsection \<open>Primitive logic\<close> |
11750 | 58 |
|
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
59 |
text \<open> |
77172 | 60 |
The definition of the logic is based on Mike Gordon's technical report \<^cite>\<open>"Gordon-TR68"\<close> that |
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
61 |
describes the first implementation of HOL. However, there are a number of differences. |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
62 |
In particular, we start with the definite description operator and introduce Hilbert's \<open>\<epsilon>\<close> operator |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
63 |
only much later. Moreover, axiom \<open>(P \<longrightarrow> Q) \<longrightarrow> (Q \<longrightarrow> P) \<longrightarrow> (P = Q)\<close> is derived from the other |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
64 |
axioms. The fact that this axiom is derivable was first noticed by Bruno Barras (for Mike Gordon's |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
65 |
line of HOL systems) and later independently by Alexander Maletzky (for Isabelle/HOL). |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
66 |
\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
67 |
|
60758 | 68 |
subsubsection \<open>Core syntax\<close> |
2260 | 69 |
|
67149 | 70 |
setup \<open>Axclass.class_axiomatization (\<^binding>\<open>type\<close>, [])\<close> |
36452 | 71 |
default_sort type |
69593 | 72 |
setup \<open>Object_Logic.add_base_sort \<^sort>\<open>type\<close>\<close> |
25460
b80087af2274
interpretation of typedecls: instantiation to class type
haftmann
parents:
25388
diff
changeset
|
73 |
|
70879 | 74 |
setup \<open>Proofterm.set_preproc (Proof_Rewrite_Rules.standard_preproc [])\<close> |
70849 | 75 |
|
55383 | 76 |
axiomatization where fun_arity: "OFCLASS('a \<Rightarrow> 'b, type_class)" |
77 |
instance "fun" :: (type, type) type by (rule fun_arity) |
|
78 |
||
79 |
axiomatization where itself_arity: "OFCLASS('a itself, type_class)" |
|
80 |
instance itself :: (type) type by (rule itself_arity) |
|
25460
b80087af2274
interpretation of typedecls: instantiation to class type
haftmann
parents:
25388
diff
changeset
|
81 |
|
7357 | 82 |
typedecl bool |
923 | 83 |
|
80934 | 84 |
judgment Trueprop :: "bool \<Rightarrow> prop" (\<open>(\<open>notation=judgment\<close>_)\<close> 5) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
85 |
|
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
86 |
axiomatization implies :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<longrightarrow>\<close> 25) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
87 |
and eq :: "['a, 'a] \<Rightarrow> bool" |
62151 | 88 |
and The :: "('a \<Rightarrow> bool) \<Rightarrow> 'a" |
89 |
||
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
90 |
notation (input) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
91 |
eq (infixl \<open>=\<close> 50) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
92 |
notation (output) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
93 |
eq (infix \<open>=\<close> 50) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
94 |
|
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
95 |
text \<open>The input syntax for \<open>eq\<close> is more permissive than the output syntax |
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
96 |
because of the large amount of material that relies on infixl.\<close> |
923 | 97 |
|
62151 | 98 |
subsubsection \<open>Defined connectives and quantifiers\<close> |
99 |
||
100 |
definition True :: bool |
|
101 |
where "True \<equiv> ((\<lambda>x::bool. x) = (\<lambda>x. x))" |
|
102 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
103 |
definition All :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder \<open>\<forall>\<close> 10) |
62151 | 104 |
where "All P \<equiv> (P = (\<lambda>x. True))" |
46973 | 105 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
106 |
definition Ex :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder \<open>\<exists>\<close> 10) |
62151 | 107 |
where "Ex P \<equiv> \<forall>Q. (\<forall>x. P x \<longrightarrow> Q) \<longrightarrow> Q" |
108 |
||
109 |
definition False :: bool |
|
110 |
where "False \<equiv> (\<forall>P. P)" |
|
111 |
||
81125 | 112 |
definition Not :: "bool \<Rightarrow> bool" (\<open>(\<open>open_block notation=\<open>prefix \<not>\<close>\<close>\<not> _)\<close> [40] 40) |
62151 | 113 |
where not_def: "\<not> P \<equiv> P \<longrightarrow> False" |
38795
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents:
38786
diff
changeset
|
114 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
115 |
definition conj :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<and>\<close> 35) |
62151 | 116 |
where and_def: "P \<and> Q \<equiv> \<forall>R. (P \<longrightarrow> Q \<longrightarrow> R) \<longrightarrow> R" |
38555 | 117 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
118 |
definition disj :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<or>\<close> 30) |
62151 | 119 |
where or_def: "P \<or> Q \<equiv> \<forall>R. (P \<longrightarrow> R) \<longrightarrow> (Q \<longrightarrow> R) \<longrightarrow> R" |
120 |
||
71827 | 121 |
definition Uniq :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
122 |
where "Uniq P \<equiv> (\<forall>x y. P x \<longrightarrow> P y \<longrightarrow> y = x)" |
|
123 |
||
63909 | 124 |
definition Ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
62151 | 125 |
where "Ex1 P \<equiv> \<exists>x. P x \<and> (\<forall>y. P y \<longrightarrow> y = x)" |
923 | 126 |
|
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
127 |
|
60758 | 128 |
subsubsection \<open>Additional concrete syntax\<close> |
2260 | 129 |
|
80934 | 130 |
syntax (ASCII) "_Uniq" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=4 notation=\<open>binder ?<\<close>\<close>?< _./ _)\<close> [0, 10] 10) |
131 |
syntax "_Uniq" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=2 notation=\<open>binder \<exists>\<^sub>\<le>\<^sub>1\<close>\<close>\<exists>\<^sub>\<le>\<^sub>1 _./ _)\<close> [0, 10] 10) |
|
80760 | 132 |
|
133 |
syntax_consts "_Uniq" \<rightleftharpoons> Uniq |
|
134 |
||
71827 | 135 |
translations "\<exists>\<^sub>\<le>\<^sub>1x. P" \<rightleftharpoons> "CONST Uniq (\<lambda>x. P)" |
136 |
||
81202 | 137 |
typed_print_translation \<open> |
81545
6f8a56a6b391
clarified renaming of bounds, using Syntax_Trans.variant_bounds: avoid structures and fixed variables with syntax;
wenzelm
parents:
81202
diff
changeset
|
138 |
[(\<^const_syntax>\<open>Uniq\<close>, Syntax_Trans.preserve_binder_abs_tr' \<^syntax_const>\<open>_Uniq\<close>)] |
71827 | 139 |
\<close> \<comment> \<open>to avoid eta-contraction of body\<close> |
140 |
||
141 |
||
63909 | 142 |
syntax (ASCII) |
80934 | 143 |
"_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX!\<close>\<close>EX! _./ _)\<close> [0, 10] 10) |
63909 | 144 |
syntax (input) |
80934 | 145 |
"_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ?!\<close>\<close>?! _./ _)\<close> [0, 10] 10) |
146 |
syntax "_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!_./ _)\<close> [0, 10] 10) |
|
80760 | 147 |
|
148 |
syntax_consts "_Ex1" \<rightleftharpoons> Ex1 |
|
149 |
||
63909 | 150 |
translations "\<exists>!x. P" \<rightleftharpoons> "CONST Ex1 (\<lambda>x. P)" |
151 |
||
81202 | 152 |
typed_print_translation \<open> |
81545
6f8a56a6b391
clarified renaming of bounds, using Syntax_Trans.variant_bounds: avoid structures and fixed variables with syntax;
wenzelm
parents:
81202
diff
changeset
|
153 |
[(\<^const_syntax>\<open>Ex1\<close>, Syntax_Trans.preserve_binder_abs_tr' \<^syntax_const>\<open>_Ex1\<close>)] |
63909 | 154 |
\<close> \<comment> \<open>to avoid eta-contraction of body\<close> |
155 |
||
156 |
||
63912
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
157 |
syntax |
80934 | 158 |
"_Not_Ex" :: "idts \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<nexists>\<close>\<close>\<nexists>_./ _)\<close> [0, 10] 10) |
159 |
"_Not_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<nexists>!\<close>\<close>\<nexists>!_./ _)\<close> [0, 10] 10) |
|
80760 | 160 |
syntax_consts |
161 |
"_Not_Ex" \<rightleftharpoons> Ex and |
|
162 |
"_Not_Ex1" \<rightleftharpoons> Ex1 |
|
63912
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
163 |
translations |
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
164 |
"\<nexists>x. P" \<rightleftharpoons> "\<not> (\<exists>x. P)" |
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
165 |
"\<nexists>!x. P" \<rightleftharpoons> "\<not> (\<exists>!x. P)" |
62522 | 166 |
|
167 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
168 |
abbreviation not_equal :: "['a, 'a] \<Rightarrow> bool" (infix \<open>\<noteq>\<close> 50) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
169 |
where "x \<noteq> y \<equiv> \<not> (x = y)" |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
170 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
171 |
notation (ASCII) |
81125 | 172 |
Not (\<open>(\<open>open_block notation=\<open>prefix ~\<close>\<close>~ _)\<close> [40] 40) and |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
173 |
conj (infixr \<open>&\<close> 35) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
174 |
disj (infixr \<open>|\<close> 30) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
175 |
implies (infixr \<open>-->\<close> 25) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
176 |
not_equal (infix \<open>~=\<close> 50) |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
177 |
|
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
178 |
abbreviation (iff) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
179 |
iff :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<longleftrightarrow>\<close> 25) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
180 |
where "A \<longleftrightarrow> B \<equiv> A = B" |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
181 |
|
80934 | 182 |
syntax "_The" :: "[pttrn, bool] \<Rightarrow> 'a" (\<open>(\<open>indent=3 notation=\<open>binder THE\<close>\<close>THE _./ _)\<close> [0, 10] 10) |
80760 | 183 |
syntax_consts "_The" \<rightleftharpoons> The |
60759 | 184 |
translations "THE x. P" \<rightleftharpoons> "CONST The (\<lambda>x. P)" |
60758 | 185 |
print_translation \<open> |
81545
6f8a56a6b391
clarified renaming of bounds, using Syntax_Trans.variant_bounds: avoid structures and fixed variables with syntax;
wenzelm
parents:
81202
diff
changeset
|
186 |
[(\<^const_syntax>\<open>The\<close>, fn ctxt => fn [Abs abs] => |
6f8a56a6b391
clarified renaming of bounds, using Syntax_Trans.variant_bounds: avoid structures and fixed variables with syntax;
wenzelm
parents:
81202
diff
changeset
|
187 |
let val (x, t) = Syntax_Trans.atomic_abs_tr' ctxt abs |
69593 | 188 |
in Syntax.const \<^syntax_const>\<open>_The\<close> $ x $ t end)] |
61799 | 189 |
\<close> \<comment> \<open>To avoid eta-contraction of body\<close> |
923 | 190 |
|
46125
00cd193a48dc
improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
45654
diff
changeset
|
191 |
nonterminal case_syn and cases_syn |
00cd193a48dc
improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
45654
diff
changeset
|
192 |
syntax |
80934 | 193 |
"_case_syntax" :: "['a, cases_syn] \<Rightarrow> 'b" (\<open>(\<open>notation=\<open>mixfix case expression\<close>\<close>case _ of/ _)\<close> 10) |
81125 | 194 |
"_case1" :: "['a, 'b] \<Rightarrow> case_syn" |
195 |
(\<open>(\<open>indent=2 notation=\<open>mixfix case clause\<close>\<close>(\<open>open_block notation=\<open>pattern case\<close>\<close>_) \<Rightarrow>/ _)\<close> 10) |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
196 |
"" :: "case_syn \<Rightarrow> cases_syn" (\<open>_\<close>) |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
197 |
"_case2" :: "[case_syn, cases_syn] \<Rightarrow> cases_syn" (\<open>_/ | _\<close>) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
198 |
syntax (ASCII) |
81125 | 199 |
"_case1" :: "['a, 'b] \<Rightarrow> case_syn" |
200 |
(\<open>(\<open>indent=2 notation=\<open>mixfix case clause\<close>\<close>(\<open>open_block notation=\<open>pattern case\<close>\<close>_) =>/ _)\<close> 10) |
|
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13723
diff
changeset
|
201 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
202 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
203 |
All (binder \<open>ALL \<close> 10) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
204 |
Ex (binder \<open>EX \<close> 10) |
2372 | 205 |
|
62521 | 206 |
notation (input) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
207 |
All (binder \<open>! \<close> 10) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
208 |
Ex (binder \<open>? \<close> 10) |
7238
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7220
diff
changeset
|
209 |
|
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7220
diff
changeset
|
210 |
|
60758 | 211 |
subsubsection \<open>Axioms and basic definitions\<close> |
2260 | 212 |
|
46973 | 213 |
axiomatization where |
214 |
refl: "t = (t::'a)" and |
|
215 |
subst: "s = t \<Longrightarrow> P s \<Longrightarrow> P t" and |
|
60759 | 216 |
ext: "(\<And>x::'a. (f x ::'b) = g x) \<Longrightarrow> (\<lambda>x. f x) = (\<lambda>x. g x)" |
61799 | 217 |
\<comment> \<open>Extensionality is built into the meta-logic, and this rule expresses |
15380 | 218 |
a related property. It is an eta-expanded version of the traditional |
60758 | 219 |
rule, and similar to the ABS rule of HOL\<close> and |
6289 | 220 |
|
11432
8a203ae6efe3
added "The" (definite description operator) (by Larry);
wenzelm
parents:
10489
diff
changeset
|
221 |
the_eq_trivial: "(THE x. x = a) = (a::'a)" |
923 | 222 |
|
46973 | 223 |
axiomatization where |
60759 | 224 |
impI: "(P \<Longrightarrow> Q) \<Longrightarrow> P \<longrightarrow> Q" and |
225 |
mp: "\<lbrakk>P \<longrightarrow> Q; P\<rbrakk> \<Longrightarrow> Q" and |
|
15380 | 226 |
|
60759 | 227 |
True_or_False: "(P = True) \<or> (P = False)" |
15380 | 228 |
|
80934 | 229 |
definition If :: "bool \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a" (\<open>(\<open>notation=\<open>mixfix if expression\<close>\<close>if (_)/ then (_)/ else (_))\<close> [0, 0, 10] 10) |
60759 | 230 |
where "If P x y \<equiv> (THE z::'a. (P = True \<longrightarrow> z = x) \<and> (P = False \<longrightarrow> z = y))" |
923 | 231 |
|
46973 | 232 |
definition Let :: "'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'b" |
233 |
where "Let s f \<equiv> f s" |
|
38525 | 234 |
|
80762 | 235 |
nonterminal letbinds and letbind |
81595
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
236 |
|
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
237 |
open_bundle let_syntax |
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
238 |
begin |
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
239 |
|
80762 | 240 |
syntax |
80934 | 241 |
"_bind" :: "[pttrn, 'a] \<Rightarrow> letbind" (\<open>(\<open>indent=2 notation=\<open>mixfix let binding\<close>\<close>_ =/ _)\<close> 10) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
242 |
"" :: "letbind \<Rightarrow> letbinds" (\<open>_\<close>) |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
243 |
"_binds" :: "[letbind, letbinds] \<Rightarrow> letbinds" (\<open>_;/ _\<close>) |
80934 | 244 |
"_Let" :: "[letbinds, 'a] \<Rightarrow> 'a" (\<open>(\<open>notation=\<open>mixfix let expression\<close>\<close>let (_)/ in (_))\<close> [0, 10] 10) |
80760 | 245 |
syntax_consts |
246 |
"_bind" "_binds" "_Let" \<rightleftharpoons> Let |
|
38525 | 247 |
translations |
60759 | 248 |
"_Let (_binds b bs) e" \<rightleftharpoons> "_Let b (_Let bs e)" |
249 |
"let x = a in e" \<rightleftharpoons> "CONST Let a (\<lambda>x. e)" |
|
38525 | 250 |
|
81595
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
251 |
end |
ed264056f5dc
more syntax bundles, e.g. to explore terms without notation;
wenzelm
parents:
81545
diff
changeset
|
252 |
|
46973 | 253 |
axiomatization undefined :: 'a |
22481
79c2724c36b5
added class "default" and expansion axioms for undefined
haftmann
parents:
22473
diff
changeset
|
254 |
|
46973 | 255 |
class default = fixes default :: 'a |
4868 | 256 |
|
11750 | 257 |
|
60758 | 258 |
subsection \<open>Fundamental rules\<close> |
20944 | 259 |
|
60758 | 260 |
subsubsection \<open>Equality\<close> |
20944 | 261 |
|
60759 | 262 |
lemma sym: "s = t \<Longrightarrow> t = s" |
18457 | 263 |
by (erule subst) (rule refl) |
15411 | 264 |
|
60759 | 265 |
lemma ssubst: "t = s \<Longrightarrow> P s \<Longrightarrow> P t" |
18457 | 266 |
by (drule sym) (erule subst) |
15411 | 267 |
|
60759 | 268 |
lemma trans: "\<lbrakk>r = s; s = t\<rbrakk> \<Longrightarrow> r = t" |
18457 | 269 |
by (erule subst) |
15411 | 270 |
|
60759 | 271 |
lemma trans_sym [Pure.elim?]: "r = s \<Longrightarrow> t = s \<Longrightarrow> r = t" |
40715
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
wenzelm
parents:
40582
diff
changeset
|
272 |
by (rule trans [OF _ sym]) |
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
wenzelm
parents:
40582
diff
changeset
|
273 |
|
58826 | 274 |
lemma meta_eq_to_obj_eq: |
63575 | 275 |
assumes "A \<equiv> B" |
20944 | 276 |
shows "A = B" |
63575 | 277 |
unfolding assms by (rule refl) |
15411 | 278 |
|
61799 | 279 |
text \<open>Useful with \<open>erule\<close> for proving equalities from known equalities.\<close> |
20944 | 280 |
(* a = b |
15411 | 281 |
| | |
282 |
c = d *) |
|
60759 | 283 |
lemma box_equals: "\<lbrakk>a = b; a = c; b = d\<rbrakk> \<Longrightarrow> c = d" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
284 |
by (iprover intro: sym trans) |
15411 | 285 |
|
60758 | 286 |
text \<open>For calculational reasoning:\<close> |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
287 |
|
60759 | 288 |
lemma forw_subst: "a = b \<Longrightarrow> P b \<Longrightarrow> P a" |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
289 |
by (rule ssubst) |
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
290 |
|
60759 | 291 |
lemma back_subst: "P a \<Longrightarrow> a = b \<Longrightarrow> P b" |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
292 |
by (rule subst) |
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
293 |
|
15411 | 294 |
|
60758 | 295 |
subsubsection \<open>Congruence rules for application\<close> |
15411 | 296 |
|
61799 | 297 |
text \<open>Similar to \<open>AP_THM\<close> in Gordon's HOL.\<close> |
60759 | 298 |
lemma fun_cong: "(f :: 'a \<Rightarrow> 'b) = g \<Longrightarrow> f x = g x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
299 |
by (iprover intro: refl elim: subst) |
15411 | 300 |
|
61799 | 301 |
text \<open>Similar to \<open>AP_TERM\<close> in Gordon's HOL and FOL's \<open>subst_context\<close>.\<close> |
60759 | 302 |
lemma arg_cong: "x = y \<Longrightarrow> f x = f y" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
303 |
by (iprover intro: refl elim: subst) |
15411 | 304 |
|
60759 | 305 |
lemma arg_cong2: "\<lbrakk>a = b; c = d\<rbrakk> \<Longrightarrow> f a c = f b d" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
306 |
by (iprover intro: refl elim: subst) |
15655 | 307 |
|
60759 | 308 |
lemma cong: "\<lbrakk>f = g; (x::'a) = y\<rbrakk> \<Longrightarrow> f x = g y" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
309 |
by (iprover intro: refl elim: subst) |
15411 | 310 |
|
60758 | 311 |
ML \<open>fun cong_tac ctxt = Cong_Tac.cong_tac ctxt @{thm cong}\<close> |
15411 | 312 |
|
32733
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
wenzelm
parents:
32668
diff
changeset
|
313 |
|
60758 | 314 |
subsubsection \<open>Equality of booleans -- iff\<close> |
15411 | 315 |
|
60759 | 316 |
lemma iffD2: "\<lbrakk>P = Q; Q\<rbrakk> \<Longrightarrow> P" |
18457 | 317 |
by (erule ssubst) |
15411 | 318 |
|
60759 | 319 |
lemma rev_iffD2: "\<lbrakk>Q; P = Q\<rbrakk> \<Longrightarrow> P" |
18457 | 320 |
by (erule iffD2) |
15411 | 321 |
|
21504 | 322 |
lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P" |
323 |
by (drule sym) (rule iffD2) |
|
324 |
||
325 |
lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P" |
|
326 |
by (drule sym) (rule rev_iffD2) |
|
15411 | 327 |
|
328 |
lemma iffE: |
|
60759 | 329 |
assumes major: "P = Q" |
330 |
and minor: "\<lbrakk>P \<longrightarrow> Q; Q \<longrightarrow> P\<rbrakk> \<Longrightarrow> R" |
|
18457 | 331 |
shows R |
332 |
by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1]) |
|
15411 | 333 |
|
334 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
335 |
subsubsection \<open>True (1)\<close> |
15411 | 336 |
|
63575 | 337 |
lemma TrueI: True |
21504 | 338 |
unfolding True_def by (rule refl) |
15411 | 339 |
|
60759 | 340 |
lemma eqTrueE: "P = True \<Longrightarrow> P" |
21504 | 341 |
by (erule iffD2) (rule TrueI) |
15411 | 342 |
|
343 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
344 |
subsubsection \<open>Universal quantifier (1)\<close> |
15411 | 345 |
|
60759 | 346 |
lemma spec: "\<forall>x::'a. P x \<Longrightarrow> P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
347 |
unfolding All_def by (iprover intro: eqTrueE fun_cong) |
15411 | 348 |
|
349 |
lemma allE: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
350 |
assumes major: "\<forall>x. P x" and minor: "P x \<Longrightarrow> R" |
21504 | 351 |
shows R |
352 |
by (iprover intro: minor major [THEN spec]) |
|
15411 | 353 |
|
354 |
lemma all_dupE: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
355 |
assumes major: "\<forall>x. P x" and minor: "\<lbrakk>P x; \<forall>x. P x\<rbrakk> \<Longrightarrow> R" |
21504 | 356 |
shows R |
357 |
by (iprover intro: minor major major [THEN spec]) |
|
15411 | 358 |
|
359 |
||
60758 | 360 |
subsubsection \<open>False\<close> |
21504 | 361 |
|
60758 | 362 |
text \<open> |
61799 | 363 |
Depends upon \<open>spec\<close>; it is impossible to do propositional |
21504 | 364 |
logic before quantifiers! |
60758 | 365 |
\<close> |
15411 | 366 |
|
60759 | 367 |
lemma FalseE: "False \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
368 |
unfolding False_def by (erule spec) |
15411 | 369 |
|
60759 | 370 |
lemma False_neq_True: "False = True \<Longrightarrow> P" |
21504 | 371 |
by (erule eqTrueE [THEN FalseE]) |
15411 | 372 |
|
373 |
||
60758 | 374 |
subsubsection \<open>Negation\<close> |
15411 | 375 |
|
376 |
lemma notI: |
|
60759 | 377 |
assumes "P \<Longrightarrow> False" |
378 |
shows "\<not> P" |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
379 |
unfolding not_def by (iprover intro: impI assms) |
15411 | 380 |
|
60759 | 381 |
lemma False_not_True: "False \<noteq> True" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
382 |
by (iprover intro: notI elim: False_neq_True) |
15411 | 383 |
|
60759 | 384 |
lemma True_not_False: "True \<noteq> False" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
385 |
by (iprover intro: notI dest: sym elim: False_neq_True) |
15411 | 386 |
|
60759 | 387 |
lemma notE: "\<lbrakk>\<not> P; P\<rbrakk> \<Longrightarrow> R" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
388 |
unfolding not_def |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
389 |
by (iprover intro: mp [THEN FalseE]) |
15411 | 390 |
|
391 |
||
60758 | 392 |
subsubsection \<open>Implication\<close> |
15411 | 393 |
|
394 |
lemma impE: |
|
60759 | 395 |
assumes "P \<longrightarrow> Q" P "Q \<Longrightarrow> R" |
396 |
shows R |
|
63575 | 397 |
by (iprover intro: assms mp) |
15411 | 398 |
|
63575 | 399 |
text \<open>Reduces \<open>Q\<close> to \<open>P \<longrightarrow> Q\<close>, allowing substitution in \<open>P\<close>.\<close> |
60759 | 400 |
lemma rev_mp: "\<lbrakk>P; P \<longrightarrow> Q\<rbrakk> \<Longrightarrow> Q" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
401 |
by (rule mp) |
15411 | 402 |
|
403 |
lemma contrapos_nn: |
|
60759 | 404 |
assumes major: "\<not> Q" |
63575 | 405 |
and minor: "P \<Longrightarrow> Q" |
60759 | 406 |
shows "\<not> P" |
63575 | 407 |
by (iprover intro: notI minor major [THEN notE]) |
15411 | 408 |
|
63575 | 409 |
text \<open>Not used at all, but we already have the other 3 combinations.\<close> |
15411 | 410 |
lemma contrapos_pn: |
411 |
assumes major: "Q" |
|
63575 | 412 |
and minor: "P \<Longrightarrow> \<not> Q" |
60759 | 413 |
shows "\<not> P" |
63575 | 414 |
by (iprover intro: notI minor major notE) |
15411 | 415 |
|
60759 | 416 |
lemma not_sym: "t \<noteq> s \<Longrightarrow> s \<noteq> t" |
21250 | 417 |
by (erule contrapos_nn) (erule sym) |
418 |
||
60759 | 419 |
lemma eq_neq_eq_imp_neq: "\<lbrakk>x = a; a \<noteq> b; b = y\<rbrakk> \<Longrightarrow> x \<noteq> y" |
21250 | 420 |
by (erule subst, erule ssubst, assumption) |
15411 | 421 |
|
422 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
423 |
subsubsection \<open>Disjunction (1)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
424 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
425 |
lemma disjE: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
426 |
assumes major: "P \<or> Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
427 |
and minorP: "P \<Longrightarrow> R" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
428 |
and minorQ: "Q \<Longrightarrow> R" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
429 |
shows R |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
430 |
by (iprover intro: minorP minorQ impI |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
431 |
major [unfolded or_def, THEN spec, THEN mp, THEN mp]) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
432 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
433 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
434 |
subsubsection \<open>Derivation of \<open>iffI\<close>\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
435 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
436 |
text \<open>In an intuitionistic version of HOL \<open>iffI\<close> needs to be an axiom.\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
437 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
438 |
lemma iffI: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
439 |
assumes "P \<Longrightarrow> Q" and "Q \<Longrightarrow> P" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
440 |
shows "P = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
441 |
proof (rule disjE[OF True_or_False[of P]]) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
442 |
assume 1: "P = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
443 |
note Q = assms(1)[OF eqTrueE[OF this]] |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
444 |
from 1 show ?thesis |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
445 |
proof (rule ssubst) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
446 |
from True_or_False[of Q] show "True = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
447 |
proof (rule disjE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
448 |
assume "Q = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
449 |
thus ?thesis by(rule sym) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
450 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
451 |
assume "Q = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
452 |
with Q have False by (rule rev_iffD1) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
453 |
thus ?thesis by (rule FalseE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
454 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
455 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
456 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
457 |
assume 2: "P = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
458 |
thus ?thesis |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
459 |
proof (rule ssubst) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
460 |
from True_or_False[of Q] show "False = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
461 |
proof (rule disjE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
462 |
assume "Q = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
463 |
from 2 assms(2)[OF eqTrueE[OF this]] have False by (rule iffD1) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
464 |
thus ?thesis by (rule FalseE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
465 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
466 |
assume "Q = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
467 |
thus ?thesis by(rule sym) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
468 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
469 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
470 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
471 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
472 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
473 |
subsubsection \<open>True (2)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
474 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
475 |
lemma eqTrueI: "P \<Longrightarrow> P = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
476 |
by (iprover intro: iffI TrueI) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
477 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
478 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
479 |
subsubsection \<open>Universal quantifier (2)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
480 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
481 |
lemma allI: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
482 |
assumes "\<And>x::'a. P x" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
483 |
shows "\<forall>x. P x" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
484 |
unfolding All_def by (iprover intro: ext eqTrueI assms) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
485 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
486 |
|
60758 | 487 |
subsubsection \<open>Existential quantifier\<close> |
15411 | 488 |
|
60759 | 489 |
lemma exI: "P x \<Longrightarrow> \<exists>x::'a. P x" |
63575 | 490 |
unfolding Ex_def by (iprover intro: allI allE impI mp) |
15411 | 491 |
|
492 |
lemma exE: |
|
60759 | 493 |
assumes major: "\<exists>x::'a. P x" |
63575 | 494 |
and minor: "\<And>x. P x \<Longrightarrow> Q" |
15411 | 495 |
shows "Q" |
63575 | 496 |
by (rule major [unfolded Ex_def, THEN spec, THEN mp]) (iprover intro: impI [THEN allI] minor) |
15411 | 497 |
|
498 |
||
60758 | 499 |
subsubsection \<open>Conjunction\<close> |
15411 | 500 |
|
60759 | 501 |
lemma conjI: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> P \<and> Q" |
63575 | 502 |
unfolding and_def by (iprover intro: impI [THEN allI] mp) |
15411 | 503 |
|
60759 | 504 |
lemma conjunct1: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> P" |
63575 | 505 |
unfolding and_def by (iprover intro: impI dest: spec mp) |
15411 | 506 |
|
60759 | 507 |
lemma conjunct2: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> Q" |
63575 | 508 |
unfolding and_def by (iprover intro: impI dest: spec mp) |
15411 | 509 |
|
510 |
lemma conjE: |
|
60759 | 511 |
assumes major: "P \<and> Q" |
63575 | 512 |
and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R" |
60759 | 513 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
514 |
proof (rule minor) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
515 |
show P by (rule major [THEN conjunct1]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
516 |
show Q by (rule major [THEN conjunct2]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
517 |
qed |
15411 | 518 |
|
519 |
lemma context_conjI: |
|
63575 | 520 |
assumes P "P \<Longrightarrow> Q" |
521 |
shows "P \<and> Q" |
|
522 |
by (iprover intro: conjI assms) |
|
15411 | 523 |
|
524 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
525 |
subsubsection \<open>Disjunction (2)\<close> |
15411 | 526 |
|
60759 | 527 |
lemma disjI1: "P \<Longrightarrow> P \<or> Q" |
63575 | 528 |
unfolding or_def by (iprover intro: allI impI mp) |
15411 | 529 |
|
60759 | 530 |
lemma disjI2: "Q \<Longrightarrow> P \<or> Q" |
63575 | 531 |
unfolding or_def by (iprover intro: allI impI mp) |
15411 | 532 |
|
533 |
||
60758 | 534 |
subsubsection \<open>Classical logic\<close> |
15411 | 535 |
|
536 |
lemma classical: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
537 |
assumes "\<not> P \<Longrightarrow> P" |
60759 | 538 |
shows P |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
539 |
proof (rule True_or_False [THEN disjE]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
540 |
show P if "P = True" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
541 |
using that by (iprover intro: eqTrueE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
542 |
show P if "P = False" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
543 |
proof (intro notI assms) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
544 |
assume P |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
545 |
with that show False |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
546 |
by (iprover elim: subst) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
547 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
548 |
qed |
15411 | 549 |
|
45607 | 550 |
lemmas ccontr = FalseE [THEN classical] |
15411 | 551 |
|
63575 | 552 |
text \<open>\<open>notE\<close> with premises exchanged; it discharges \<open>\<not> R\<close> so that it can be used to |
553 |
make elimination rules.\<close> |
|
15411 | 554 |
lemma rev_notE: |
60759 | 555 |
assumes premp: P |
63575 | 556 |
and premnot: "\<not> R \<Longrightarrow> \<not> P" |
60759 | 557 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
558 |
by (iprover intro: ccontr notE [OF premnot premp]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
559 |
|
15411 | 560 |
|
63575 | 561 |
text \<open>Double negation law.\<close> |
60759 | 562 |
lemma notnotD: "\<not>\<not> P \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
563 |
by (iprover intro: ccontr notE ) |
15411 | 564 |
|
565 |
lemma contrapos_pp: |
|
60759 | 566 |
assumes p1: Q |
63575 | 567 |
and p2: "\<not> P \<Longrightarrow> \<not> Q" |
60759 | 568 |
shows P |
63575 | 569 |
by (iprover intro: classical p1 p2 notE) |
15411 | 570 |
|
571 |
||
60758 | 572 |
subsubsection \<open>Unique existence\<close> |
15411 | 573 |
|
71827 | 574 |
lemma Uniq_I [intro?]: |
575 |
assumes "\<And>x y. \<lbrakk>P x; P y\<rbrakk> \<Longrightarrow> y = x" |
|
576 |
shows "Uniq P" |
|
577 |
unfolding Uniq_def by (iprover intro: assms allI impI) |
|
578 |
||
579 |
lemma Uniq_D [dest?]: "\<lbrakk>Uniq P; P a; P b\<rbrakk> \<Longrightarrow> a=b" |
|
580 |
unfolding Uniq_def by (iprover dest: spec mp) |
|
581 |
||
15411 | 582 |
lemma ex1I: |
60759 | 583 |
assumes "P a" "\<And>x. P x \<Longrightarrow> x = a" |
584 |
shows "\<exists>!x. P x" |
|
63575 | 585 |
unfolding Ex1_def by (iprover intro: assms exI conjI allI impI) |
15411 | 586 |
|
63575 | 587 |
text \<open>Sometimes easier to use: the premises have no shared variables. Safe!\<close> |
15411 | 588 |
lemma ex_ex1I: |
60759 | 589 |
assumes ex_prem: "\<exists>x. P x" |
63575 | 590 |
and eq: "\<And>x y. \<lbrakk>P x; P y\<rbrakk> \<Longrightarrow> x = y" |
60759 | 591 |
shows "\<exists>!x. P x" |
63575 | 592 |
by (iprover intro: ex_prem [THEN exE] ex1I eq) |
15411 | 593 |
|
594 |
lemma ex1E: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
595 |
assumes major: "\<exists>!x. P x" and minor: "\<And>x. \<lbrakk>P x; \<forall>y. P y \<longrightarrow> y = x\<rbrakk> \<Longrightarrow> R" |
60759 | 596 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
597 |
proof (rule major [unfolded Ex1_def, THEN exE]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
598 |
show "\<And>x. P x \<and> (\<forall>y. P y \<longrightarrow> y = x) \<Longrightarrow> R" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
599 |
by (iprover intro: minor elim: conjE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
600 |
qed |
15411 | 601 |
|
60759 | 602 |
lemma ex1_implies_ex: "\<exists>!x. P x \<Longrightarrow> \<exists>x. P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
603 |
by (iprover intro: exI elim: ex1E) |
15411 | 604 |
|
60758 | 605 |
subsubsection \<open>Classical intro rules for disjunction and existential quantifiers\<close> |
15411 | 606 |
|
607 |
lemma disjCI: |
|
63575 | 608 |
assumes "\<not> Q \<Longrightarrow> P" |
609 |
shows "P \<or> Q" |
|
610 |
by (rule classical) (iprover intro: assms disjI1 disjI2 notI elim: notE) |
|
15411 | 611 |
|
60759 | 612 |
lemma excluded_middle: "\<not> P \<or> P" |
63575 | 613 |
by (iprover intro: disjCI) |
15411 | 614 |
|
60758 | 615 |
text \<open> |
20944 | 616 |
case distinction as a natural deduction rule. |
63575 | 617 |
Note that \<open>\<not> P\<close> is the second case, not the first. |
60758 | 618 |
\<close> |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
619 |
lemma case_split [case_names True False]: |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
620 |
assumes "P \<Longrightarrow> Q" "\<not> P \<Longrightarrow> Q" |
60759 | 621 |
shows Q |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
622 |
using excluded_middle [of P] |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
623 |
by (iprover intro: assms elim: disjE) |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
624 |
|
63575 | 625 |
text \<open>Classical implies (\<open>\<longrightarrow>\<close>) elimination.\<close> |
15411 | 626 |
lemma impCE: |
60759 | 627 |
assumes major: "P \<longrightarrow> Q" |
63575 | 628 |
and minor: "\<not> P \<Longrightarrow> R" "Q \<Longrightarrow> R" |
60759 | 629 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
630 |
using excluded_middle [of P] |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
631 |
by (iprover intro: minor major [THEN mp] elim: disjE)+ |
15411 | 632 |
|
63575 | 633 |
text \<open> |
634 |
This version of \<open>\<longrightarrow>\<close> elimination works on \<open>Q\<close> before \<open>P\<close>. It works best for |
|
635 |
those cases in which \<open>P\<close> holds "almost everywhere". Can't install as |
|
636 |
default: would break old proofs. |
|
637 |
\<close> |
|
15411 | 638 |
lemma impCE': |
60759 | 639 |
assumes major: "P \<longrightarrow> Q" |
63575 | 640 |
and minor: "Q \<Longrightarrow> R" "\<not> P \<Longrightarrow> R" |
60759 | 641 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
642 |
using assms by (elim impCE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
643 |
|
80948
572970d15ab0
To tiny but maybe useful lemmas (moved in from the AFP, Word_Lib)
paulson <lp15@cam.ac.uk>
parents:
80934
diff
changeset
|
644 |
text \<open>The analogous introduction rule for conjunction, above, is even constructive\<close> |
572970d15ab0
To tiny but maybe useful lemmas (moved in from the AFP, Word_Lib)
paulson <lp15@cam.ac.uk>
parents:
80934
diff
changeset
|
645 |
lemma context_disjE: |
572970d15ab0
To tiny but maybe useful lemmas (moved in from the AFP, Word_Lib)
paulson <lp15@cam.ac.uk>
parents:
80934
diff
changeset
|
646 |
assumes major: "P \<or> Q" and minor: "P \<Longrightarrow> R" "\<not>P \<Longrightarrow> Q \<Longrightarrow> R" |
572970d15ab0
To tiny but maybe useful lemmas (moved in from the AFP, Word_Lib)
paulson <lp15@cam.ac.uk>
parents:
80934
diff
changeset
|
647 |
shows R |
572970d15ab0
To tiny but maybe useful lemmas (moved in from the AFP, Word_Lib)
paulson <lp15@cam.ac.uk>
parents:
80934
diff
changeset
|
648 |
by (iprover intro: disjE [OF major] disjE [OF excluded_middle] assms) |
15411 | 649 |
|
63575 | 650 |
text \<open>Classical \<open>\<longleftrightarrow>\<close> elimination.\<close> |
15411 | 651 |
lemma iffCE: |
60759 | 652 |
assumes major: "P = Q" |
63575 | 653 |
and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R" "\<lbrakk>\<not> P; \<not> Q\<rbrakk> \<Longrightarrow> R" |
60759 | 654 |
shows R |
63575 | 655 |
by (rule major [THEN iffE]) (iprover intro: minor elim: impCE notE) |
15411 | 656 |
|
657 |
lemma exCI: |
|
60759 | 658 |
assumes "\<forall>x. \<not> P x \<Longrightarrow> P a" |
659 |
shows "\<exists>x. P x" |
|
63575 | 660 |
by (rule ccontr) (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"]) |
15411 | 661 |
|
662 |
||
60758 | 663 |
subsubsection \<open>Intuitionistic Reasoning\<close> |
12386 | 664 |
|
665 |
lemma impE': |
|
60759 | 666 |
assumes 1: "P \<longrightarrow> Q" |
667 |
and 2: "Q \<Longrightarrow> R" |
|
668 |
and 3: "P \<longrightarrow> Q \<Longrightarrow> P" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
669 |
shows R |
12386 | 670 |
proof - |
671 |
from 3 and 1 have P . |
|
672 |
with 1 have Q by (rule impE) |
|
673 |
with 2 show R . |
|
674 |
qed |
|
675 |
||
676 |
lemma allE': |
|
60759 | 677 |
assumes 1: "\<forall>x. P x" |
678 |
and 2: "P x \<Longrightarrow> \<forall>x. P x \<Longrightarrow> Q" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
679 |
shows Q |
12386 | 680 |
proof - |
681 |
from 1 have "P x" by (rule spec) |
|
682 |
from this and 1 show Q by (rule 2) |
|
683 |
qed |
|
684 |
||
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
685 |
lemma notE': |
60759 | 686 |
assumes 1: "\<not> P" |
687 |
and 2: "\<not> P \<Longrightarrow> P" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
688 |
shows R |
12386 | 689 |
proof - |
690 |
from 2 and 1 have P . |
|
691 |
with 1 show R by (rule notE) |
|
692 |
qed |
|
693 |
||
60759 | 694 |
lemma TrueE: "True \<Longrightarrow> P \<Longrightarrow> P" . |
695 |
lemma notFalseE: "\<not> False \<Longrightarrow> P \<Longrightarrow> P" . |
|
22444
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
dixon
parents:
22377
diff
changeset
|
696 |
|
22467
c9357ef01168
TrueElim and notTrueElim tested and added as safe elim rules.
dixon
parents:
22445
diff
changeset
|
697 |
lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE |
15801 | 698 |
and [Pure.intro!] = iffI conjI impI TrueI notI allI refl |
699 |
and [Pure.elim 2] = allE notE' impE' |
|
700 |
and [Pure.intro] = exI disjI2 disjI1 |
|
12386 | 701 |
|
702 |
lemmas [trans] = trans |
|
703 |
and [sym] = sym not_sym |
|
15801 | 704 |
and [Pure.elim?] = iffD1 iffD2 impE |
11750 | 705 |
|
11438
3d9222b80989
declare trans [trans] (*overridden in theory Calculation*);
wenzelm
parents:
11432
diff
changeset
|
706 |
|
60758 | 707 |
subsubsection \<open>Atomizing meta-level connectives\<close> |
11750 | 708 |
|
28513 | 709 |
axiomatization where |
63575 | 710 |
eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" \<comment> \<open>admissible axiom\<close> |
28513 | 711 |
|
60759 | 712 |
lemma atomize_all [atomize]: "(\<And>x. P x) \<equiv> Trueprop (\<forall>x. P x)" |
12003 | 713 |
proof |
60759 | 714 |
assume "\<And>x. P x" |
715 |
then show "\<forall>x. P x" .. |
|
9488 | 716 |
next |
60759 | 717 |
assume "\<forall>x. P x" |
718 |
then show "\<And>x. P x" by (rule allE) |
|
9488 | 719 |
qed |
720 |
||
60759 | 721 |
lemma atomize_imp [atomize]: "(A \<Longrightarrow> B) \<equiv> Trueprop (A \<longrightarrow> B)" |
12003 | 722 |
proof |
60759 | 723 |
assume r: "A \<Longrightarrow> B" |
724 |
show "A \<longrightarrow> B" by (rule impI) (rule r) |
|
9488 | 725 |
next |
60759 | 726 |
assume "A \<longrightarrow> B" and A |
23553 | 727 |
then show B by (rule mp) |
9488 | 728 |
qed |
729 |
||
60759 | 730 |
lemma atomize_not: "(A \<Longrightarrow> False) \<equiv> Trueprop (\<not> A)" |
14749 | 731 |
proof |
60759 | 732 |
assume r: "A \<Longrightarrow> False" |
733 |
show "\<not> A" by (rule notI) (rule r) |
|
14749 | 734 |
next |
60759 | 735 |
assume "\<not> A" and A |
23553 | 736 |
then show False by (rule notE) |
14749 | 737 |
qed |
738 |
||
60759 | 739 |
lemma atomize_eq [atomize, code]: "(x \<equiv> y) \<equiv> Trueprop (x = y)" |
12003 | 740 |
proof |
60759 | 741 |
assume "x \<equiv> y" |
742 |
show "x = y" by (unfold \<open>x \<equiv> y\<close>) (rule refl) |
|
10432
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
743 |
next |
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
744 |
assume "x = y" |
60759 | 745 |
then show "x \<equiv> y" by (rule eq_reflection) |
10432
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
746 |
qed |
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
747 |
|
60759 | 748 |
lemma atomize_conj [atomize]: "(A &&& B) \<equiv> Trueprop (A \<and> B)" |
12003 | 749 |
proof |
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28741
diff
changeset
|
750 |
assume conj: "A &&& B" |
60759 | 751 |
show "A \<and> B" |
19121 | 752 |
proof (rule conjI) |
753 |
from conj show A by (rule conjunctionD1) |
|
754 |
from conj show B by (rule conjunctionD2) |
|
755 |
qed |
|
11953 | 756 |
next |
60759 | 757 |
assume conj: "A \<and> B" |
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28741
diff
changeset
|
758 |
show "A &&& B" |
19121 | 759 |
proof - |
760 |
from conj show A .. |
|
761 |
from conj show B .. |
|
11953 | 762 |
qed |
763 |
qed |
|
764 |
||
12386 | 765 |
lemmas [symmetric, rulify] = atomize_all atomize_imp |
18832 | 766 |
and [symmetric, defn] = atomize_all atomize_imp atomize_eq |
12386 | 767 |
|
11750 | 768 |
|
60758 | 769 |
subsubsection \<open>Atomizing elimination rules\<close> |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
770 |
|
60759 | 771 |
lemma atomize_exL[atomize_elim]: "(\<And>x. P x \<Longrightarrow> Q) \<equiv> ((\<exists>x. P x) \<Longrightarrow> Q)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
772 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
773 |
|
60759 | 774 |
lemma atomize_conjL[atomize_elim]: "(A \<Longrightarrow> B \<Longrightarrow> C) \<equiv> (A \<and> B \<Longrightarrow> C)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
775 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
776 |
|
60759 | 777 |
lemma atomize_disjL[atomize_elim]: "((A \<Longrightarrow> C) \<Longrightarrow> (B \<Longrightarrow> C) \<Longrightarrow> C) \<equiv> ((A \<or> B \<Longrightarrow> C) \<Longrightarrow> C)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
778 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
779 |
|
60759 | 780 |
lemma atomize_elimL[atomize_elim]: "(\<And>B. (A \<Longrightarrow> B) \<Longrightarrow> B) \<equiv> Trueprop A" .. |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
781 |
|
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
782 |
|
60758 | 783 |
subsection \<open>Package setup\<close> |
20944 | 784 |
|
69605 | 785 |
ML_file \<open>Tools/hologic.ML\<close> |
70847 | 786 |
ML_file \<open>Tools/rewrite_hol_proof.ML\<close> |
51314
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents:
51304
diff
changeset
|
787 |
|
70879 | 788 |
setup \<open>Proofterm.set_preproc (Proof_Rewrite_Rules.standard_preproc Rewrite_HOL_Proof.rews)\<close> |
70849 | 789 |
|
51314
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents:
51304
diff
changeset
|
790 |
|
60758 | 791 |
subsubsection \<open>Sledgehammer setup\<close> |
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
792 |
|
60758 | 793 |
text \<open> |
63575 | 794 |
Theorems blacklisted to Sledgehammer. These theorems typically produce clauses |
795 |
that are prolific (match too many equality or membership literals) and relate to |
|
796 |
seldom-used facts. Some duplicate other rules. |
|
60758 | 797 |
\<close> |
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
798 |
|
57963 | 799 |
named_theorems no_atp "theorems that should be filtered out by Sledgehammer" |
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
800 |
|
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
801 |
|
60758 | 802 |
subsubsection \<open>Classical Reasoner setup\<close> |
9529 | 803 |
|
60759 | 804 |
lemma imp_elim: "P \<longrightarrow> Q \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> (Q \<Longrightarrow> R) \<Longrightarrow> R" |
26411 | 805 |
by (rule classical) iprover |
806 |
||
60759 | 807 |
lemma swap: "\<not> P \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> R" |
26411 | 808 |
by (rule classical) iprover |
809 |
||
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62913
diff
changeset
|
810 |
lemma thin_refl: "\<lbrakk>x = x; PROP W\<rbrakk> \<Longrightarrow> PROP W" . |
20944 | 811 |
|
60758 | 812 |
ML \<open> |
42799 | 813 |
structure Hypsubst = Hypsubst |
814 |
( |
|
21218 | 815 |
val dest_eq = HOLogic.dest_eq |
21151 | 816 |
val dest_Trueprop = HOLogic.dest_Trueprop |
817 |
val dest_imp = HOLogic.dest_imp |
|
26411 | 818 |
val eq_reflection = @{thm eq_reflection} |
819 |
val rev_eq_reflection = @{thm meta_eq_to_obj_eq} |
|
820 |
val imp_intr = @{thm impI} |
|
821 |
val rev_mp = @{thm rev_mp} |
|
822 |
val subst = @{thm subst} |
|
823 |
val sym = @{thm sym} |
|
22129 | 824 |
val thin_refl = @{thm thin_refl}; |
42799 | 825 |
); |
21671 | 826 |
open Hypsubst; |
21151 | 827 |
|
42799 | 828 |
structure Classical = Classical |
829 |
( |
|
26411 | 830 |
val imp_elim = @{thm imp_elim} |
831 |
val not_elim = @{thm notE} |
|
832 |
val swap = @{thm swap} |
|
833 |
val classical = @{thm classical} |
|
21151 | 834 |
val sizef = Drule.size_of_thm |
835 |
val hyp_subst_tacs = [Hypsubst.hyp_subst_tac] |
|
42799 | 836 |
); |
21151 | 837 |
|
58826 | 838 |
structure Basic_Classical: BASIC_CLASSICAL = Classical; |
33308
cf62d1690d04
separate ResBlacklist, based on scalable persistent data -- avoids inefficient hashing later on;
wenzelm
parents:
33185
diff
changeset
|
839 |
open Basic_Classical; |
60758 | 840 |
\<close> |
22129 | 841 |
|
60758 | 842 |
setup \<open> |
35389 | 843 |
(*prevent substitution on bool*) |
58826 | 844 |
let |
80662 | 845 |
fun non_bool_eq \<^Const_>\<open>HOL.eq T\<close> = T <> \<^Type>\<open>bool\<close> |
58826 | 846 |
| non_bool_eq _ = false; |
847 |
fun hyp_subst_tac' ctxt = |
|
848 |
SUBGOAL (fn (goal, i) => |
|
80662 | 849 |
if Term.exists_subterm non_bool_eq goal |
58826 | 850 |
then Hypsubst.hyp_subst_tac ctxt i |
851 |
else no_tac); |
|
852 |
in |
|
853 |
Context_Rules.addSWrapper (fn ctxt => fn tac => hyp_subst_tac' ctxt ORELSE' tac) |
|
854 |
end |
|
60758 | 855 |
\<close> |
21009 | 856 |
|
857 |
declare iffI [intro!] |
|
858 |
and notI [intro!] |
|
859 |
and impI [intro!] |
|
860 |
and disjCI [intro!] |
|
861 |
and conjI [intro!] |
|
862 |
and TrueI [intro!] |
|
863 |
and refl [intro!] |
|
864 |
||
865 |
declare iffCE [elim!] |
|
866 |
and FalseE [elim!] |
|
867 |
and impCE [elim!] |
|
868 |
and disjE [elim!] |
|
869 |
and conjE [elim!] |
|
870 |
||
871 |
declare ex_ex1I [intro!] |
|
872 |
and allI [intro!] |
|
873 |
and exI [intro] |
|
874 |
||
875 |
declare exE [elim!] |
|
876 |
allE [elim] |
|
877 |
||
69593 | 878 |
ML \<open>val HOL_cs = claset_of \<^context>\<close> |
19162 | 879 |
|
60759 | 880 |
lemma contrapos_np: "\<not> Q \<Longrightarrow> (\<not> P \<Longrightarrow> Q) \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
881 |
by (erule swap) |
10383 | 882 |
|
18689
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
883 |
declare ex_ex1I [rule del, intro! 2] |
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
884 |
and ex1I [intro] |
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
885 |
|
41865
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
paulson
parents:
41827
diff
changeset
|
886 |
declare ext [intro] |
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
paulson
parents:
41827
diff
changeset
|
887 |
|
12386 | 888 |
lemmas [intro?] = ext |
889 |
and [elim?] = ex1_implies_ex |
|
11977 | 890 |
|
63575 | 891 |
text \<open>Better than \<open>ex1E\<close> for classical reasoner: needs no quantifier duplication!\<close> |
20973 | 892 |
lemma alt_ex1E [elim!]: |
20944 | 893 |
assumes major: "\<exists>!x. P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
894 |
and minor: "\<And>x. \<lbrakk>P x; \<forall>y y'. P y \<and> P y' \<longrightarrow> y = y'\<rbrakk> \<Longrightarrow> R" |
20944 | 895 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
896 |
proof (rule ex1E [OF major minor]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
897 |
show "\<forall>y y'. P y \<and> P y' \<longrightarrow> y = y'" if "P x" and \<section>: "\<forall>y. P y \<longrightarrow> y = x" for x |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
898 |
using \<open>P x\<close> \<section> \<section> by fast |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
899 |
qed assumption |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
900 |
|
71827 | 901 |
text \<open>And again using Uniq\<close> |
902 |
lemma alt_ex1E': |
|
903 |
assumes "\<exists>!x. P x" "\<And>x. \<lbrakk>P x; \<exists>\<^sub>\<le>\<^sub>1x. P x\<rbrakk> \<Longrightarrow> R" |
|
904 |
shows R |
|
905 |
using assms unfolding Uniq_def by fast |
|
906 |
||
907 |
lemma ex1_iff_ex_Uniq: "(\<exists>!x. P x) \<longleftrightarrow> (\<exists>x. P x) \<and> (\<exists>\<^sub>\<le>\<^sub>1x. P x)" |
|
908 |
unfolding Uniq_def by fast |
|
909 |
||
20944 | 910 |
|
60758 | 911 |
ML \<open> |
42477 | 912 |
structure Blast = Blast |
913 |
( |
|
914 |
structure Classical = Classical |
|
74383 | 915 |
val Trueprop_const = dest_Const \<^Const>\<open>Trueprop\<close> |
69593 | 916 |
val equality_name = \<^const_name>\<open>HOL.eq\<close> |
917 |
val not_name = \<^const_name>\<open>Not\<close> |
|
42477 | 918 |
val notE = @{thm notE} |
919 |
val ccontr = @{thm ccontr} |
|
920 |
val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac |
|
921 |
); |
|
922 |
val blast_tac = Blast.blast_tac; |
|
60758 | 923 |
\<close> |
20944 | 924 |
|
925 |
||
60758 | 926 |
subsubsection \<open>THE: definite description operator\<close> |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
927 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
928 |
lemma the_equality [intro]: |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
929 |
assumes "P a" |
63575 | 930 |
and "\<And>x. P x \<Longrightarrow> x = a" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
931 |
shows "(THE x. P x) = a" |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
932 |
by (blast intro: assms trans [OF arg_cong [where f=The] the_eq_trivial]) |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
933 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
934 |
lemma theI: |
63575 | 935 |
assumes "P a" |
936 |
and "\<And>x. P x \<Longrightarrow> x = a" |
|
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
937 |
shows "P (THE x. P x)" |
63575 | 938 |
by (iprover intro: assms the_equality [THEN ssubst]) |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
939 |
|
60759 | 940 |
lemma theI': "\<exists>!x. P x \<Longrightarrow> P (THE x. P x)" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
941 |
by (blast intro: theI) |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
942 |
|
63575 | 943 |
text \<open>Easier to apply than \<open>theI\<close>: only one occurrence of \<open>P\<close>.\<close> |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
944 |
lemma theI2: |
60759 | 945 |
assumes "P a" "\<And>x. P x \<Longrightarrow> x = a" "\<And>x. P x \<Longrightarrow> Q x" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
946 |
shows "Q (THE x. P x)" |
63575 | 947 |
by (iprover intro: assms theI) |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
948 |
|
63575 | 949 |
lemma the1I2: |
950 |
assumes "\<exists>!x. P x" "\<And>x. P x \<Longrightarrow> Q x" |
|
951 |
shows "Q (THE x. P x)" |
|
952 |
by (iprover intro: assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)] elim: allE impE) |
|
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
953 |
|
60759 | 954 |
lemma the1_equality [elim?]: "\<lbrakk>\<exists>!x. P x; P a\<rbrakk> \<Longrightarrow> (THE x. P x) = a" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
955 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
956 |
|
71827 | 957 |
lemma the1_equality': "\<lbrakk>\<exists>\<^sub>\<le>\<^sub>1x. P x; P a\<rbrakk> \<Longrightarrow> (THE x. P x) = a" |
958 |
unfolding Uniq_def by blast |
|
959 |
||
60759 | 960 |
lemma the_sym_eq_trivial: "(THE y. x = y) = x" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
961 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
962 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
963 |
|
60758 | 964 |
subsubsection \<open>Simplifier\<close> |
12281 | 965 |
|
60759 | 966 |
lemma eta_contract_eq: "(\<lambda>s. f s) = f" .. |
12281 | 967 |
|
71918 | 968 |
lemma subst_all: |
969 |
\<open>(\<And>x. x = a \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
970 |
\<open>(\<And>x. a = x \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
71959 | 971 |
proof - |
972 |
show \<open>(\<And>x. x = a \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
973 |
proof (rule equal_intr_rule) |
|
974 |
assume *: \<open>\<And>x. x = a \<Longrightarrow> PROP P x\<close> |
|
975 |
show \<open>PROP P a\<close> |
|
976 |
by (rule *) (rule refl) |
|
977 |
next |
|
978 |
fix x |
|
979 |
assume \<open>PROP P a\<close> and \<open>x = a\<close> |
|
980 |
from \<open>x = a\<close> have \<open>x \<equiv> a\<close> |
|
981 |
by (rule eq_reflection) |
|
982 |
with \<open>PROP P a\<close> show \<open>PROP P x\<close> |
|
983 |
by simp |
|
984 |
qed |
|
985 |
show \<open>(\<And>x. a = x \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
986 |
proof (rule equal_intr_rule) |
|
987 |
assume *: \<open>\<And>x. a = x \<Longrightarrow> PROP P x\<close> |
|
988 |
show \<open>PROP P a\<close> |
|
989 |
by (rule *) (rule refl) |
|
990 |
next |
|
991 |
fix x |
|
992 |
assume \<open>PROP P a\<close> and \<open>a = x\<close> |
|
993 |
from \<open>a = x\<close> have \<open>a \<equiv> x\<close> |
|
994 |
by (rule eq_reflection) |
|
995 |
with \<open>PROP P a\<close> show \<open>PROP P x\<close> |
|
996 |
by simp |
|
997 |
qed |
|
71918 | 998 |
qed |
999 |
||
12281 | 1000 |
lemma simp_thms: |
60759 | 1001 |
shows not_not: "(\<not> \<not> P) = P" |
1002 |
and Not_eq_iff: "((\<not> P) = (\<not> Q)) = (P = Q)" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
1003 |
and |
60759 | 1004 |
"(P \<noteq> Q) = (P = (\<not> Q))" |
1005 |
"(P \<or> \<not>P) = True" "(\<not> P \<or> P) = True" |
|
12281 | 1006 |
"(x = x) = True" |
32068 | 1007 |
and not_True_eq_False [code]: "(\<not> True) = False" |
1008 |
and not_False_eq_True [code]: "(\<not> False) = True" |
|
20944 | 1009 |
and |
60759 | 1010 |
"(\<not> P) \<noteq> P" "P \<noteq> (\<not> P)" |
1011 |
"(True = P) = P" |
|
20944 | 1012 |
and eq_True: "(P = True) = P" |
60759 | 1013 |
and "(False = P) = (\<not> P)" |
20944 | 1014 |
and eq_False: "(P = False) = (\<not> P)" |
1015 |
and |
|
60759 | 1016 |
"(True \<longrightarrow> P) = P" "(False \<longrightarrow> P) = True" |
1017 |
"(P \<longrightarrow> True) = True" "(P \<longrightarrow> P) = True" |
|
1018 |
"(P \<longrightarrow> False) = (\<not> P)" "(P \<longrightarrow> \<not> P) = (\<not> P)" |
|
1019 |
"(P \<and> True) = P" "(True \<and> P) = P" |
|
1020 |
"(P \<and> False) = False" "(False \<and> P) = False" |
|
1021 |
"(P \<and> P) = P" "(P \<and> (P \<and> Q)) = (P \<and> Q)" |
|
1022 |
"(P \<and> \<not> P) = False" "(\<not> P \<and> P) = False" |
|
1023 |
"(P \<or> True) = True" "(True \<or> P) = True" |
|
1024 |
"(P \<or> False) = P" "(False \<or> P) = P" |
|
1025 |
"(P \<or> P) = P" "(P \<or> (P \<or> Q)) = (P \<or> Q)" and |
|
1026 |
"(\<forall>x. P) = P" "(\<exists>x. P) = P" "\<exists>x. x = t" "\<exists>x. t = x" |
|
31166
a90fe83f58ea
"{x. P x & x=t & Q x}" is now rewritten to "if P t & Q t then {t} else {}"
nipkow
parents:
31156
diff
changeset
|
1027 |
and |
60759 | 1028 |
"\<And>P. (\<exists>x. x = t \<and> P x) = P t" |
1029 |
"\<And>P. (\<exists>x. t = x \<and> P x) = P t" |
|
1030 |
"\<And>P. (\<forall>x. x = t \<longrightarrow> P x) = P t" |
|
1031 |
"\<And>P. (\<forall>x. t = x \<longrightarrow> P x) = P t" |
|
66109 | 1032 |
"(\<forall>x. x \<noteq> t) = False" "(\<forall>x. t \<noteq> x) = False" |
17589 | 1033 |
by (blast, blast, blast, blast, blast, iprover+) |
13421 | 1034 |
|
63575 | 1035 |
lemma disj_absorb: "A \<or> A \<longleftrightarrow> A" |
14201 | 1036 |
by blast |
1037 |
||
63575 | 1038 |
lemma disj_left_absorb: "A \<or> (A \<or> B) \<longleftrightarrow> A \<or> B" |
14201 | 1039 |
by blast |
1040 |
||
63575 | 1041 |
lemma conj_absorb: "A \<and> A \<longleftrightarrow> A" |
14201 | 1042 |
by blast |
1043 |
||
63575 | 1044 |
lemma conj_left_absorb: "A \<and> (A \<and> B) \<longleftrightarrow> A \<and> B" |
14201 | 1045 |
by blast |
1046 |
||
12281 | 1047 |
lemma eq_ac: |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1048 |
shows eq_commute: "a = b \<longleftrightarrow> b = a" |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1049 |
and iff_left_commute: "(P \<longleftrightarrow> (Q \<longleftrightarrow> R)) \<longleftrightarrow> (Q \<longleftrightarrow> (P \<longleftrightarrow> R))" |
63575 | 1050 |
and iff_assoc: "((P \<longleftrightarrow> Q) \<longleftrightarrow> R) \<longleftrightarrow> (P \<longleftrightarrow> (Q \<longleftrightarrow> R))" |
1051 |
by (iprover, blast+) |
|
1052 |
||
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1053 |
lemma neq_commute: "a \<noteq> b \<longleftrightarrow> b \<noteq> a" by iprover |
12281 | 1054 |
|
1055 |
lemma conj_comms: |
|
63575 | 1056 |
shows conj_commute: "P \<and> Q \<longleftrightarrow> Q \<and> P" |
1057 |
and conj_left_commute: "P \<and> (Q \<and> R) \<longleftrightarrow> Q \<and> (P \<and> R)" by iprover+ |
|
1058 |
lemma conj_assoc: "(P \<and> Q) \<and> R \<longleftrightarrow> P \<and> (Q \<and> R)" by iprover |
|
12281 | 1059 |
|
19174 | 1060 |
lemmas conj_ac = conj_commute conj_left_commute conj_assoc |
1061 |
||
12281 | 1062 |
lemma disj_comms: |
63575 | 1063 |
shows disj_commute: "P \<or> Q \<longleftrightarrow> Q \<or> P" |
1064 |
and disj_left_commute: "P \<or> (Q \<or> R) \<longleftrightarrow> Q \<or> (P \<or> R)" by iprover+ |
|
1065 |
lemma disj_assoc: "(P \<or> Q) \<or> R \<longleftrightarrow> P \<or> (Q \<or> R)" by iprover |
|
12281 | 1066 |
|
19174 | 1067 |
lemmas disj_ac = disj_commute disj_left_commute disj_assoc |
1068 |
||
63575 | 1069 |
lemma conj_disj_distribL: "P \<and> (Q \<or> R) \<longleftrightarrow> P \<and> Q \<or> P \<and> R" by iprover |
1070 |
lemma conj_disj_distribR: "(P \<or> Q) \<and> R \<longleftrightarrow> P \<and> R \<or> Q \<and> R" by iprover |
|
12281 | 1071 |
|
63575 | 1072 |
lemma disj_conj_distribL: "P \<or> (Q \<and> R) \<longleftrightarrow> (P \<or> Q) \<and> (P \<or> R)" by iprover |
1073 |
lemma disj_conj_distribR: "(P \<and> Q) \<or> R \<longleftrightarrow> (P \<or> R) \<and> (Q \<or> R)" by iprover |
|
12281 | 1074 |
|
60759 | 1075 |
lemma imp_conjR: "(P \<longrightarrow> (Q \<and> R)) = ((P \<longrightarrow> Q) \<and> (P \<longrightarrow> R))" by iprover |
1076 |
lemma imp_conjL: "((P \<and> Q) \<longrightarrow> R) = (P \<longrightarrow> (Q \<longrightarrow> R))" by iprover |
|
1077 |
lemma imp_disjL: "((P \<or> Q) \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))" by iprover |
|
12281 | 1078 |
|
61799 | 1079 |
text \<open>These two are specialized, but \<open>imp_disj_not1\<close> is useful in \<open>Auth/Yahalom\<close>.\<close> |
63575 | 1080 |
lemma imp_disj_not1: "(P \<longrightarrow> Q \<or> R) \<longleftrightarrow> (\<not> Q \<longrightarrow> P \<longrightarrow> R)" by blast |
1081 |
lemma imp_disj_not2: "(P \<longrightarrow> Q \<or> R) \<longleftrightarrow> (\<not> R \<longrightarrow> P \<longrightarrow> Q)" by blast |
|
12281 | 1082 |
|
63575 | 1083 |
lemma imp_disj1: "((P \<longrightarrow> Q) \<or> R) \<longleftrightarrow> (P \<longrightarrow> Q \<or> R)" by blast |
1084 |
lemma imp_disj2: "(Q \<or> (P \<longrightarrow> R)) \<longleftrightarrow> (P \<longrightarrow> Q \<or> R)" by blast |
|
12281 | 1085 |
|
63575 | 1086 |
lemma imp_cong: "(P = P') \<Longrightarrow> (P' \<Longrightarrow> (Q = Q')) \<Longrightarrow> ((P \<longrightarrow> Q) \<longleftrightarrow> (P' \<longrightarrow> Q'))" |
21151 | 1087 |
by iprover |
1088 |
||
63575 | 1089 |
lemma de_Morgan_disj: "\<not> (P \<or> Q) \<longleftrightarrow> \<not> P \<and> \<not> Q" by iprover |
1090 |
lemma de_Morgan_conj: "\<not> (P \<and> Q) \<longleftrightarrow> \<not> P \<or> \<not> Q" by blast |
|
1091 |
lemma not_imp: "\<not> (P \<longrightarrow> Q) \<longleftrightarrow> P \<and> \<not> Q" by blast |
|
1092 |
lemma not_iff: "P \<noteq> Q \<longleftrightarrow> (P \<longleftrightarrow> \<not> Q)" by blast |
|
1093 |
lemma disj_not1: "\<not> P \<or> Q \<longleftrightarrow> (P \<longrightarrow> Q)" by blast |
|
1094 |
lemma disj_not2: "P \<or> \<not> Q \<longleftrightarrow> (Q \<longrightarrow> P)" by blast \<comment> \<open>changes orientation :-(\<close> |
|
1095 |
lemma imp_conv_disj: "(P \<longrightarrow> Q) \<longleftrightarrow> (\<not> P) \<or> Q" by blast |
|
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
62958
diff
changeset
|
1096 |
lemma disj_imp: "P \<or> Q \<longleftrightarrow> \<not> P \<longrightarrow> Q" by blast |
12281 | 1097 |
|
63575 | 1098 |
lemma iff_conv_conj_imp: "(P \<longleftrightarrow> Q) \<longleftrightarrow> (P \<longrightarrow> Q) \<and> (Q \<longrightarrow> P)" by iprover |
12281 | 1099 |
|
1100 |
||
63575 | 1101 |
lemma cases_simp: "(P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> Q) \<longleftrightarrow> Q" |
62390 | 1102 |
\<comment> \<open>Avoids duplication of subgoals after \<open>if_split\<close>, when the true and false\<close> |
61799 | 1103 |
\<comment> \<open>cases boil down to the same thing.\<close> |
12281 | 1104 |
by blast |
1105 |
||
63575 | 1106 |
lemma not_all: "\<not> (\<forall>x. P x) \<longleftrightarrow> (\<exists>x. \<not> P x)" by blast |
1107 |
lemma imp_all: "((\<forall>x. P x) \<longrightarrow> Q) \<longleftrightarrow> (\<exists>x. P x \<longrightarrow> Q)" by blast |
|
1108 |
lemma not_ex: "\<not> (\<exists>x. P x) \<longleftrightarrow> (\<forall>x. \<not> P x)" by iprover |
|
1109 |
lemma imp_ex: "((\<exists>x. P x) \<longrightarrow> Q) \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q)" by iprover |
|
1110 |
lemma all_not_ex: "(\<forall>x. P x) \<longleftrightarrow> \<not> (\<exists>x. \<not> P x)" by blast |
|
12281 | 1111 |
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
1112 |
declare All_def [no_atp] |
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24280
diff
changeset
|
1113 |
|
63575 | 1114 |
lemma ex_disj_distrib: "(\<exists>x. P x \<or> Q x) \<longleftrightarrow> (\<exists>x. P x) \<or> (\<exists>x. Q x)" by iprover |
1115 |
lemma all_conj_distrib: "(\<forall>x. P x \<and> Q x) \<longleftrightarrow> (\<forall>x. P x) \<and> (\<forall>x. Q x)" by iprover |
|
79772
817d33f8aa7f
Moving valuable library material from Martingales into the distribution
paulson <lp15@cam.ac.uk>
parents:
78800
diff
changeset
|
1116 |
lemma all_imp_conj_distrib: "(\<forall>x. P x \<longrightarrow> Q x \<and> R x) \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q x) \<and> (\<forall>x. P x \<longrightarrow> R x)" |
817d33f8aa7f
Moving valuable library material from Martingales into the distribution
paulson <lp15@cam.ac.uk>
parents:
78800
diff
changeset
|
1117 |
by iprover |
12281 | 1118 |
|
60758 | 1119 |
text \<open> |
63575 | 1120 |
\<^medskip> The \<open>\<and>\<close> congruence rule: not included by default! |
60758 | 1121 |
May slow rewrite proofs down by as much as 50\%\<close> |
12281 | 1122 |
|
63575 | 1123 |
lemma conj_cong: "P = P' \<Longrightarrow> (P' \<Longrightarrow> Q = Q') \<Longrightarrow> (P \<and> Q) = (P' \<and> Q')" |
17589 | 1124 |
by iprover |
12281 | 1125 |
|
63575 | 1126 |
lemma rev_conj_cong: "Q = Q' \<Longrightarrow> (Q' \<Longrightarrow> P = P') \<Longrightarrow> (P \<and> Q) = (P' \<and> Q')" |
17589 | 1127 |
by iprover |
12281 | 1128 |
|
61799 | 1129 |
text \<open>The \<open>|\<close> congruence rule: not included by default!\<close> |
12281 | 1130 |
|
63575 | 1131 |
lemma disj_cong: "P = P' \<Longrightarrow> (\<not> P' \<Longrightarrow> Q = Q') \<Longrightarrow> (P \<or> Q) = (P' \<or> Q')" |
12281 | 1132 |
by blast |
1133 |
||
1134 |
||
63575 | 1135 |
text \<open>\<^medskip> if-then-else rules\<close> |
12281 | 1136 |
|
32068 | 1137 |
lemma if_True [code]: "(if True then x else y) = x" |
63575 | 1138 |
unfolding If_def by blast |
12281 | 1139 |
|
32068 | 1140 |
lemma if_False [code]: "(if False then x else y) = y" |
63575 | 1141 |
unfolding If_def by blast |
12281 | 1142 |
|
60759 | 1143 |
lemma if_P: "P \<Longrightarrow> (if P then x else y) = x" |
63575 | 1144 |
unfolding If_def by blast |
12281 | 1145 |
|
60759 | 1146 |
lemma if_not_P: "\<not> P \<Longrightarrow> (if P then x else y) = y" |
63575 | 1147 |
unfolding If_def by blast |
12281 | 1148 |
|
62390 | 1149 |
lemma if_split: "P (if Q then x else y) = ((Q \<longrightarrow> P x) \<and> (\<not> Q \<longrightarrow> P y))" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1150 |
proof (rule case_split [of Q]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1151 |
show ?thesis if Q |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1152 |
using that by (simplesubst if_P) blast+ |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1153 |
show ?thesis if "\<not> Q" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1154 |
using that by (simplesubst if_not_P) blast+ |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1155 |
qed |
12281 | 1156 |
|
62390 | 1157 |
lemma if_split_asm: "P (if Q then x else y) = (\<not> ((Q \<and> \<not> P x) \<or> (\<not> Q \<and> \<not> P y)))" |
63575 | 1158 |
by (simplesubst if_split) blast |
12281 | 1159 |
|
62390 | 1160 |
lemmas if_splits [no_atp] = if_split if_split_asm |
12281 | 1161 |
|
1162 |
lemma if_cancel: "(if c then x else x) = x" |
|
63575 | 1163 |
by (simplesubst if_split) blast |
12281 | 1164 |
|
1165 |
lemma if_eq_cancel: "(if x = y then y else x) = x" |
|
63575 | 1166 |
by (simplesubst if_split) blast |
12281 | 1167 |
|
60759 | 1168 |
lemma if_bool_eq_conj: "(if P then Q else R) = ((P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> R))" |
61799 | 1169 |
\<comment> \<open>This form is useful for expanding \<open>if\<close>s on the RIGHT of the \<open>\<Longrightarrow>\<close> symbol.\<close> |
62390 | 1170 |
by (rule if_split) |
12281 | 1171 |
|
60759 | 1172 |
lemma if_bool_eq_disj: "(if P then Q else R) = ((P \<and> Q) \<or> (\<not> P \<and> R))" |
61799 | 1173 |
\<comment> \<open>And this form is useful for expanding \<open>if\<close>s on the LEFT.\<close> |
62390 | 1174 |
by (simplesubst if_split) blast |
12281 | 1175 |
|
63575 | 1176 |
lemma Eq_TrueI: "P \<Longrightarrow> P \<equiv> True" unfolding atomize_eq by iprover |
1177 |
lemma Eq_FalseI: "\<not> P \<Longrightarrow> P \<equiv> False" unfolding atomize_eq by iprover |
|
12281 | 1178 |
|
63575 | 1179 |
text \<open>\<^medskip> let rules for simproc\<close> |
15423 | 1180 |
|
60759 | 1181 |
lemma Let_folded: "f x \<equiv> g x \<Longrightarrow> Let x f \<equiv> Let x g" |
15423 | 1182 |
by (unfold Let_def) |
1183 |
||
60759 | 1184 |
lemma Let_unfold: "f x \<equiv> g \<Longrightarrow> Let x f \<equiv> g" |
15423 | 1185 |
by (unfold Let_def) |
1186 |
||
60758 | 1187 |
text \<open> |
16999 | 1188 |
The following copy of the implication operator is useful for |
1189 |
fine-tuning congruence rules. It instructs the simplifier to simplify |
|
1190 |
its premise. |
|
60758 | 1191 |
\<close> |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1192 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
1193 |
definition simp_implies :: "prop \<Rightarrow> prop \<Rightarrow> prop" (infixr \<open>=simp=>\<close> 1) |
67399 | 1194 |
where "simp_implies \<equiv> (\<Longrightarrow>)" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1195 |
|
18457 | 1196 |
lemma simp_impliesI: |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1197 |
assumes PQ: "(PROP P \<Longrightarrow> PROP Q)" |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1198 |
shows "PROP P =simp=> PROP Q" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1199 |
unfolding simp_implies_def |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1200 |
by (iprover intro: PQ) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1201 |
|
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1202 |
lemma simp_impliesE: |
25388 | 1203 |
assumes PQ: "PROP P =simp=> PROP Q" |
63575 | 1204 |
and P: "PROP P" |
1205 |
and QR: "PROP Q \<Longrightarrow> PROP R" |
|
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1206 |
shows "PROP R" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1207 |
by (iprover intro: QR P PQ [unfolded simp_implies_def]) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1208 |
|
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1209 |
lemma simp_implies_cong: |
60759 | 1210 |
assumes PP' :"PROP P \<equiv> PROP P'" |
63575 | 1211 |
and P'QQ': "PROP P' \<Longrightarrow> (PROP Q \<equiv> PROP Q')" |
60759 | 1212 |
shows "(PROP P =simp=> PROP Q) \<equiv> (PROP P' =simp=> PROP Q')" |
63575 | 1213 |
unfolding simp_implies_def |
1214 |
proof (rule equal_intr_rule) |
|
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1215 |
assume PQ: "PROP P \<Longrightarrow> PROP Q" |
63575 | 1216 |
and P': "PROP P'" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1217 |
from PP' [symmetric] and P' have "PROP P" |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1218 |
by (rule equal_elim_rule1) |
23553 | 1219 |
then have "PROP Q" by (rule PQ) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1220 |
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:
16587
diff
changeset
|
1221 |
next |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1222 |
assume P'Q': "PROP P' \<Longrightarrow> PROP Q'" |
63575 | 1223 |
and P: "PROP P" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1224 |
from PP' and P have P': "PROP P'" by (rule equal_elim_rule1) |
23553 | 1225 |
then have "PROP Q'" by (rule P'Q') |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1226 |
with P'QQ' [OF P', symmetric] show "PROP Q" |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1227 |
by (rule equal_elim_rule1) |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1228 |
qed |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1229 |
|
20944 | 1230 |
lemma uncurry: |
1231 |
assumes "P \<longrightarrow> Q \<longrightarrow> R" |
|
1232 |
shows "P \<and> Q \<longrightarrow> R" |
|
23553 | 1233 |
using assms by blast |
20944 | 1234 |
|
1235 |
lemma iff_allI: |
|
1236 |
assumes "\<And>x. P x = Q x" |
|
1237 |
shows "(\<forall>x. P x) = (\<forall>x. Q x)" |
|
23553 | 1238 |
using assms by blast |
20944 | 1239 |
|
1240 |
lemma iff_exI: |
|
1241 |
assumes "\<And>x. P x = Q x" |
|
1242 |
shows "(\<exists>x. P x) = (\<exists>x. Q x)" |
|
23553 | 1243 |
using assms by blast |
20944 | 1244 |
|
63575 | 1245 |
lemma all_comm: "(\<forall>x y. P x y) = (\<forall>y x. P x y)" |
20944 | 1246 |
by blast |
1247 |
||
63575 | 1248 |
lemma ex_comm: "(\<exists>x y. P x y) = (\<exists>y x. P x y)" |
20944 | 1249 |
by blast |
1250 |
||
69605 | 1251 |
ML_file \<open>Tools/simpdata.ML\<close> |
60758 | 1252 |
ML \<open>open Simpdata\<close> |
42455 | 1253 |
|
60758 | 1254 |
setup \<open> |
58826 | 1255 |
map_theory_simpset (put_simpset HOL_basic_ss) #> |
1256 |
Simplifier.method_setup Splitter.split_modifiers |
|
60758 | 1257 |
\<close> |
42455 | 1258 |
|
71886 | 1259 |
simproc_setup defined_Ex ("\<exists>x. P x") = \<open>K Quantifier1.rearrange_Ex\<close> |
1260 |
simproc_setup defined_All ("\<forall>x. P x") = \<open>K Quantifier1.rearrange_All\<close> |
|
71914 | 1261 |
simproc_setup defined_all("\<And>x. PROP P x") = \<open>K Quantifier1.rearrange_all\<close> |
1262 |
||
61799 | 1263 |
text \<open>Simproc for proving \<open>(y = x) \<equiv> False\<close> from premise \<open>\<not> (x = y)\<close>:\<close> |
24035 | 1264 |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1265 |
simproc_setup neq ("x = y") = \<open> |
63575 | 1266 |
let |
1267 |
val neq_to_EQ_False = @{thm not_sym} RS @{thm Eq_FalseI}; |
|
1268 |
fun is_neq eq lhs rhs thm = |
|
1269 |
(case Thm.prop_of thm of |
|
1270 |
_ $ (Not $ (eq' $ l' $ r')) => |
|
1271 |
Not = HOLogic.Not andalso eq' = eq andalso |
|
1272 |
r' aconv lhs andalso l' aconv rhs |
|
1273 |
| _ => false); |
|
1274 |
fun proc ss ct = |
|
1275 |
(case Thm.term_of ct of |
|
1276 |
eq $ lhs $ rhs => |
|
1277 |
(case find_first (is_neq eq lhs rhs) (Simplifier.prems_of ss) of |
|
1278 |
SOME thm => SOME (thm RS neq_to_EQ_False) |
|
1279 |
| NONE => NONE) |
|
1280 |
| _ => NONE); |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1281 |
in K proc end |
60758 | 1282 |
\<close> |
24035 | 1283 |
|
60758 | 1284 |
simproc_setup let_simp ("Let x f") = \<open> |
63575 | 1285 |
let |
1286 |
fun count_loose (Bound i) k = if i >= k then 1 else 0 |
|
1287 |
| count_loose (s $ t) k = count_loose s k + count_loose t k |
|
1288 |
| count_loose (Abs (_, _, t)) k = count_loose t (k + 1) |
|
1289 |
| count_loose _ _ = 0; |
|
80662 | 1290 |
fun is_trivial_let \<^Const_>\<open>Let _ _ for x t\<close> = |
63575 | 1291 |
(case t of |
1292 |
Abs (_, _, t') => count_loose t' 0 <= 1 |
|
1293 |
| _ => true); |
|
1294 |
in |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1295 |
K (fn ctxt => fn ct => |
63575 | 1296 |
if is_trivial_let (Thm.term_of ct) |
1297 |
then SOME @{thm Let_def} (*no or one ocurrence of bound variable*) |
|
1298 |
else |
|
1299 |
let (*Norbert Schirmer's case*) |
|
1300 |
val t = Thm.term_of ct; |
|
70326 | 1301 |
val (t', ctxt') = yield_singleton (Variable.import_terms false) t ctxt; |
63575 | 1302 |
in |
1303 |
Option.map (hd o Variable.export ctxt' ctxt o single) |
|
80662 | 1304 |
(case t' of \<^Const_>\<open>Let _ _ for x f\<close> => (* x and f are already in normal form *) |
63575 | 1305 |
if is_Free x orelse is_Bound x orelse is_Const x |
1306 |
then SOME @{thm Let_def} |
|
1307 |
else |
|
1308 |
let |
|
1309 |
val n = case f of (Abs (x, _, _)) => x | _ => "x"; |
|
1310 |
val cx = Thm.cterm_of ctxt x; |
|
1311 |
val xT = Thm.typ_of_cterm cx; |
|
1312 |
val cf = Thm.cterm_of ctxt f; |
|
1313 |
val fx_g = Simplifier.rewrite ctxt (Thm.apply cf cx); |
|
1314 |
val (_ $ _ $ g) = Thm.prop_of fx_g; |
|
1315 |
val g' = abstract_over (x, g); |
|
1316 |
val abs_g'= Abs (n, xT, g'); |
|
1317 |
in |
|
1318 |
if g aconv g' then |
|
1319 |
let |
|
1320 |
val rl = |
|
1321 |
infer_instantiate ctxt [(("f", 0), cf), (("x", 0), cx)] @{thm Let_unfold}; |
|
1322 |
in SOME (rl OF [fx_g]) end |
|
1323 |
else if (Envir.beta_eta_contract f) aconv (Envir.beta_eta_contract abs_g') |
|
1324 |
then NONE (*avoid identity conversion*) |
|
1325 |
else |
|
1326 |
let |
|
1327 |
val g'x = abs_g' $ x; |
|
1328 |
val g_g'x = Thm.symmetric (Thm.beta_conversion false (Thm.cterm_of ctxt g'x)); |
|
1329 |
val rl = |
|
1330 |
@{thm Let_folded} |> infer_instantiate ctxt |
|
1331 |
[(("f", 0), Thm.cterm_of ctxt f), |
|
1332 |
(("x", 0), cx), |
|
1333 |
(("g", 0), Thm.cterm_of ctxt abs_g')]; |
|
1334 |
in SOME (rl OF [Thm.transitive fx_g g_g'x]) end |
|
1335 |
end |
|
1336 |
| _ => NONE) |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1337 |
end) |
63575 | 1338 |
end |
1339 |
\<close> |
|
24035 | 1340 |
|
21151 | 1341 |
lemma True_implies_equals: "(True \<Longrightarrow> PROP P) \<equiv> PROP P" |
1342 |
proof |
|
23389 | 1343 |
assume "True \<Longrightarrow> PROP P" |
1344 |
from this [OF TrueI] show "PROP P" . |
|
21151 | 1345 |
next |
1346 |
assume "PROP P" |
|
23389 | 1347 |
then show "PROP P" . |
21151 | 1348 |
qed |
1349 |
||
59864 | 1350 |
lemma implies_True_equals: "(PROP P \<Longrightarrow> True) \<equiv> Trueprop True" |
61169 | 1351 |
by standard (intro TrueI) |
59864 | 1352 |
|
1353 |
lemma False_implies_equals: "(False \<Longrightarrow> P) \<equiv> Trueprop True" |
|
61169 | 1354 |
by standard simp_all |
59864 | 1355 |
|
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1356 |
(* It seems that making this a simp rule is slower than using the simproc below *) |
63575 | 1357 |
lemma implies_False_swap: |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1358 |
"(False \<Longrightarrow> PROP P \<Longrightarrow> PROP Q) \<equiv> (PROP P \<Longrightarrow> False \<Longrightarrow> PROP Q)" |
63575 | 1359 |
by (rule swap_prems_eq) |
60169
5ef8ed685965
swap False to the right in assumptions to be eliminated at the right end
nipkow
parents:
60151
diff
changeset
|
1360 |
|
80663 | 1361 |
simproc_setup eliminate_false_implies ("False \<Longrightarrow> PROP P") = \<open> |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1362 |
let |
80663 | 1363 |
fun conv n = |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1364 |
if n > 1 then |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1365 |
Conv.rewr_conv @{thm Pure.swap_prems_eq} |
80663 | 1366 |
then_conv Conv.arg_conv (conv (n - 1)) |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1367 |
then_conv Conv.rewr_conv @{thm HOL.implies_True_equals} |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1368 |
else |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1369 |
Conv.rewr_conv @{thm HOL.False_implies_equals} |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1370 |
in |
80663 | 1371 |
fn _ => fn _ => fn ct => |
1372 |
let |
|
1373 |
val t = Thm.term_of ct |
|
1374 |
val n = length (Logic.strip_imp_prems t) |
|
1375 |
in |
|
1376 |
(case Logic.strip_imp_concl t of |
|
1377 |
\<^Const_>\<open>Trueprop for _\<close> => SOME (conv n ct) |
|
1378 |
| _ => NONE) |
|
1379 |
end |
|
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1380 |
end |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1381 |
\<close> |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1382 |
|
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1383 |
|
21151 | 1384 |
lemma ex_simps: |
60759 | 1385 |
"\<And>P Q. (\<exists>x. P x \<and> Q) = ((\<exists>x. P x) \<and> Q)" |
1386 |
"\<And>P Q. (\<exists>x. P \<and> Q x) = (P \<and> (\<exists>x. Q x))" |
|
1387 |
"\<And>P Q. (\<exists>x. P x \<or> Q) = ((\<exists>x. P x) \<or> Q)" |
|
1388 |
"\<And>P Q. (\<exists>x. P \<or> Q x) = (P \<or> (\<exists>x. Q x))" |
|
1389 |
"\<And>P Q. (\<exists>x. P x \<longrightarrow> Q) = ((\<forall>x. P x) \<longrightarrow> Q)" |
|
1390 |
"\<And>P Q. (\<exists>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<exists>x. Q x))" |
|
61799 | 1391 |
\<comment> \<open>Miniscoping: pushing in existential quantifiers.\<close> |
21151 | 1392 |
by (iprover | blast)+ |
1393 |
||
1394 |
lemma all_simps: |
|
60759 | 1395 |
"\<And>P Q. (\<forall>x. P x \<and> Q) = ((\<forall>x. P x) \<and> Q)" |
1396 |
"\<And>P Q. (\<forall>x. P \<and> Q x) = (P \<and> (\<forall>x. Q x))" |
|
1397 |
"\<And>P Q. (\<forall>x. P x \<or> Q) = ((\<forall>x. P x) \<or> Q)" |
|
1398 |
"\<And>P Q. (\<forall>x. P \<or> Q x) = (P \<or> (\<forall>x. Q x))" |
|
1399 |
"\<And>P Q. (\<forall>x. P x \<longrightarrow> Q) = ((\<exists>x. P x) \<longrightarrow> Q)" |
|
1400 |
"\<And>P Q. (\<forall>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<forall>x. Q x))" |
|
61799 | 1401 |
\<comment> \<open>Miniscoping: pushing in universal quantifiers.\<close> |
21151 | 1402 |
by (iprover | blast)+ |
15481 | 1403 |
|
21671 | 1404 |
lemmas [simp] = |
63575 | 1405 |
triv_forall_equality \<comment> \<open>prunes params\<close> |
1406 |
True_implies_equals implies_True_equals \<comment> \<open>prune \<open>True\<close> in asms\<close> |
|
1407 |
False_implies_equals \<comment> \<open>prune \<open>False\<close> in asms\<close> |
|
21671 | 1408 |
if_True |
1409 |
if_False |
|
1410 |
if_cancel |
|
1411 |
if_eq_cancel |
|
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67405
diff
changeset
|
1412 |
imp_disjL \<comment> \<open>In general it seems wrong to add distributive laws by default: they |
63575 | 1413 |
might cause exponential blow-up. But \<open>imp_disjL\<close> has been in for a while |
20973 | 1414 |
and cannot be removed without affecting existing proofs. Moreover, |
63575 | 1415 |
rewriting by \<open>(P \<or> Q \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))\<close> might be justified on the |
1416 |
grounds that it allows simplification of \<open>R\<close> in the two cases.\<close> |
|
21671 | 1417 |
conj_assoc |
1418 |
disj_assoc |
|
1419 |
de_Morgan_conj |
|
1420 |
de_Morgan_disj |
|
1421 |
imp_disj1 |
|
1422 |
imp_disj2 |
|
1423 |
not_imp |
|
1424 |
disj_not1 |
|
1425 |
not_all |
|
1426 |
not_ex |
|
1427 |
cases_simp |
|
1428 |
the_eq_trivial |
|
1429 |
the_sym_eq_trivial |
|
1430 |
ex_simps |
|
1431 |
all_simps |
|
1432 |
simp_thms |
|
71918 | 1433 |
subst_all |
21671 | 1434 |
|
1435 |
lemmas [cong] = imp_cong simp_implies_cong |
|
62390 | 1436 |
lemmas [split] = if_split |
20973 | 1437 |
|
69593 | 1438 |
ML \<open>val HOL_ss = simpset_of \<^context>\<close> |
20973 | 1439 |
|
63575 | 1440 |
text \<open>Simplifies \<open>x\<close> assuming \<open>c\<close> and \<open>y\<close> assuming \<open>\<not> c\<close>.\<close> |
20944 | 1441 |
lemma if_cong: |
1442 |
assumes "b = c" |
|
63575 | 1443 |
and "c \<Longrightarrow> x = u" |
1444 |
and "\<not> c \<Longrightarrow> y = v" |
|
20944 | 1445 |
shows "(if b then x else y) = (if c then u else v)" |
38525 | 1446 |
using assms by simp |
20944 | 1447 |
|
63575 | 1448 |
text \<open>Prevents simplification of \<open>x\<close> and \<open>y\<close>: |
60758 | 1449 |
faster and allows the execution of functional programs.\<close> |
20944 | 1450 |
lemma if_weak_cong [cong]: |
1451 |
assumes "b = c" |
|
1452 |
shows "(if b then x else y) = (if c then x else y)" |
|
23553 | 1453 |
using assms by (rule arg_cong) |
20944 | 1454 |
|
60758 | 1455 |
text \<open>Prevents simplification of t: much faster\<close> |
20944 | 1456 |
lemma let_weak_cong: |
1457 |
assumes "a = b" |
|
1458 |
shows "(let x = a in t x) = (let x = b in t x)" |
|
23553 | 1459 |
using assms by (rule arg_cong) |
20944 | 1460 |
|
60758 | 1461 |
text \<open>To tidy up the result of a simproc. Only the RHS will be simplified.\<close> |
20944 | 1462 |
lemma eq_cong2: |
1463 |
assumes "u = u'" |
|
1464 |
shows "(t \<equiv> u) \<equiv> (t \<equiv> u')" |
|
23553 | 1465 |
using assms by simp |
20944 | 1466 |
|
63575 | 1467 |
lemma if_distrib: "f (if c then x else y) = (if c then f x else f y)" |
20944 | 1468 |
by simp |
1469 |
||
68072
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1470 |
lemma if_distribR: "(if b then f else g) x = (if b then f x else g x)" |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1471 |
by simp |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1472 |
|
67673
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1473 |
lemma all_if_distrib: "(\<forall>x. if x = a then P x else Q x) \<longleftrightarrow> P a \<and> (\<forall>x. x\<noteq>a \<longrightarrow> Q x)" |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1474 |
by auto |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1475 |
|
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1476 |
lemma ex_if_distrib: "(\<exists>x. if x = a then P x else Q x) \<longleftrightarrow> P a \<or> (\<exists>x. x\<noteq>a \<and> Q x)" |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1477 |
by auto |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1478 |
|
67719
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1479 |
lemma if_if_eq_conj: "(if P then if Q then x else y else y) = (if P \<and> Q then x else y)" |
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1480 |
by simp |
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1481 |
|
63575 | 1482 |
text \<open>As a simplification rule, it replaces all function equalities by |
60758 | 1483 |
first-order equalities.\<close> |
44277
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1484 |
lemma fun_eq_iff: "f = g \<longleftrightarrow> (\<forall>x. f x = g x)" |
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1485 |
by auto |
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1486 |
|
17459 | 1487 |
|
60758 | 1488 |
subsubsection \<open>Generic cases and induction\<close> |
17459 | 1489 |
|
60758 | 1490 |
text \<open>Rule projections:\<close> |
1491 |
ML \<open> |
|
32172 | 1492 |
structure Project_Rule = Project_Rule |
25388 | 1493 |
( |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1494 |
val conjunct1 = @{thm conjunct1} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1495 |
val conjunct2 = @{thm conjunct2} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1496 |
val mp = @{thm mp} |
59929 | 1497 |
); |
60758 | 1498 |
\<close> |
17459 | 1499 |
|
59940
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1500 |
context |
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1501 |
begin |
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1502 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1503 |
qualified definition "induct_forall P \<equiv> \<forall>x. P x" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1504 |
qualified definition "induct_implies A B \<equiv> A \<longrightarrow> B" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1505 |
qualified definition "induct_equal x y \<equiv> x = y" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1506 |
qualified definition "induct_conj A B \<equiv> A \<and> B" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1507 |
qualified definition "induct_true \<equiv> True" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1508 |
qualified definition "induct_false \<equiv> False" |
35416
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents:
35115
diff
changeset
|
1509 |
|
59929 | 1510 |
lemma induct_forall_eq: "(\<And>x. P x) \<equiv> Trueprop (induct_forall (\<lambda>x. P x))" |
18457 | 1511 |
by (unfold atomize_all induct_forall_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1512 |
|
59929 | 1513 |
lemma induct_implies_eq: "(A \<Longrightarrow> B) \<equiv> Trueprop (induct_implies A B)" |
18457 | 1514 |
by (unfold atomize_imp induct_implies_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1515 |
|
59929 | 1516 |
lemma induct_equal_eq: "(x \<equiv> y) \<equiv> Trueprop (induct_equal x y)" |
18457 | 1517 |
by (unfold atomize_eq induct_equal_def) |
1518 |
||
59929 | 1519 |
lemma induct_conj_eq: "(A &&& B) \<equiv> Trueprop (induct_conj A B)" |
18457 | 1520 |
by (unfold atomize_conj induct_conj_def) |
1521 |
||
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1522 |
lemmas induct_atomize' = induct_forall_eq induct_implies_eq induct_conj_eq |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1523 |
lemmas induct_atomize = induct_atomize' induct_equal_eq |
45607 | 1524 |
lemmas induct_rulify' [symmetric] = induct_atomize' |
1525 |
lemmas induct_rulify [symmetric] = induct_atomize |
|
18457 | 1526 |
lemmas induct_rulify_fallback = |
1527 |
induct_forall_def induct_implies_def induct_equal_def induct_conj_def |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1528 |
induct_true_def induct_false_def |
18457 | 1529 |
|
11989 | 1530 |
lemma induct_forall_conj: "induct_forall (\<lambda>x. induct_conj (A x) (B x)) = |
1531 |
induct_conj (induct_forall A) (induct_forall B)" |
|
17589 | 1532 |
by (unfold induct_forall_def induct_conj_def) iprover |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1533 |
|
11989 | 1534 |
lemma induct_implies_conj: "induct_implies C (induct_conj A B) = |
1535 |
induct_conj (induct_implies C A) (induct_implies C B)" |
|
17589 | 1536 |
by (unfold induct_implies_def induct_conj_def) iprover |
11989 | 1537 |
|
59929 | 1538 |
lemma induct_conj_curry: "(induct_conj A B \<Longrightarrow> PROP C) \<equiv> (A \<Longrightarrow> B \<Longrightarrow> PROP C)" |
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1539 |
proof |
59929 | 1540 |
assume r: "induct_conj A B \<Longrightarrow> PROP C" |
1541 |
assume ab: A B |
|
1542 |
show "PROP C" by (rule r) (simp add: induct_conj_def ab) |
|
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1543 |
next |
59929 | 1544 |
assume r: "A \<Longrightarrow> B \<Longrightarrow> PROP C" |
1545 |
assume ab: "induct_conj A B" |
|
1546 |
show "PROP C" by (rule r) (simp_all add: ab [unfolded induct_conj_def]) |
|
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1547 |
qed |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1548 |
|
11989 | 1549 |
lemmas induct_conj = induct_forall_conj induct_implies_conj induct_conj_curry |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1550 |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1551 |
lemma induct_trueI: "induct_true" |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1552 |
by (simp add: induct_true_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1553 |
|
60758 | 1554 |
text \<open>Method setup.\<close> |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1555 |
|
69605 | 1556 |
ML_file \<open>~~/src/Tools/induct.ML\<close> |
60758 | 1557 |
ML \<open> |
32171 | 1558 |
structure Induct = Induct |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1559 |
( |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1560 |
val cases_default = @{thm case_split} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1561 |
val atomize = @{thms induct_atomize} |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1562 |
val rulify = @{thms induct_rulify'} |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1563 |
val rulify_fallback = @{thms induct_rulify_fallback} |
34988
cca208c8d619
Added setup for simplification of equality constraints in cases rules.
berghofe
parents:
34917
diff
changeset
|
1564 |
val equal_def = @{thm induct_equal_def} |
80662 | 1565 |
fun dest_def \<^Const_>\<open>induct_equal _ for t u\<close> = SOME (t, u) |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1566 |
| dest_def _ = NONE |
58957 | 1567 |
fun trivial_tac ctxt = match_tac ctxt @{thms induct_trueI} |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1568 |
) |
60758 | 1569 |
\<close> |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1570 |
|
69605 | 1571 |
ML_file \<open>~~/src/Tools/induction.ML\<close> |
45014
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
nipkow
parents:
44921
diff
changeset
|
1572 |
|
78799 | 1573 |
simproc_setup passive swap_induct_false ("induct_false \<Longrightarrow> PROP P \<Longrightarrow> PROP Q") = |
78794 | 1574 |
\<open>fn _ => fn _ => fn ct => |
1575 |
(case Thm.term_of ct of |
|
1576 |
_ $ (P as _ $ \<^Const_>\<open>induct_false\<close>) $ (_ $ Q $ _) => |
|
1577 |
if P <> Q then SOME Drule.swap_prems_eq else NONE |
|
1578 |
| _ => NONE)\<close> |
|
78799 | 1579 |
|
1580 |
simproc_setup passive induct_equal_conj_curry ("induct_conj P Q \<Longrightarrow> PROP R") = |
|
78794 | 1581 |
\<open>fn _ => fn _ => fn ct => |
1582 |
(case Thm.term_of ct of |
|
1583 |
_ $ (_ $ P) $ _ => |
|
1584 |
let |
|
1585 |
fun is_conj \<^Const_>\<open>induct_conj for P Q\<close> = is_conj P andalso is_conj Q |
|
1586 |
| is_conj \<^Const_>\<open>induct_equal _ for _ _\<close> = true |
|
1587 |
| is_conj \<^Const_>\<open>induct_true\<close> = true |
|
1588 |
| is_conj \<^Const_>\<open>induct_false\<close> = true |
|
1589 |
| is_conj _ = false |
|
1590 |
in if is_conj P then SOME @{thm induct_conj_curry} else NONE end |
|
1591 |
| _ => NONE)\<close> |
|
1592 |
||
60758 | 1593 |
declaration \<open> |
80701 | 1594 |
K (Induct.map_simpset |
1595 |
(Simplifier.add_proc \<^simproc>\<open>swap_induct_false\<close> #> |
|
1596 |
Simplifier.add_proc \<^simproc>\<open>induct_equal_conj_curry\<close> #> |
|
1597 |
Simplifier.set_mksimps (fn ctxt => |
|
1598 |
Simpdata.mksimps Simpdata.mksimps_pairs ctxt #> |
|
1599 |
map (rewrite_rule ctxt (map Thm.symmetric @{thms induct_rulify_fallback}))))) |
|
60758 | 1600 |
\<close> |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1601 |
|
60758 | 1602 |
text \<open>Pre-simplification of induction and cases rules\<close> |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1603 |
|
59929 | 1604 |
lemma [induct_simp]: "(\<And>x. induct_equal x t \<Longrightarrow> PROP P x) \<equiv> PROP P t" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1605 |
unfolding induct_equal_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1606 |
proof |
59929 | 1607 |
assume r: "\<And>x. x = t \<Longrightarrow> PROP P x" |
1608 |
show "PROP P t" by (rule r [OF refl]) |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1609 |
next |
59929 | 1610 |
fix x |
1611 |
assume "PROP P t" "x = t" |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1612 |
then show "PROP P x" by simp |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1613 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1614 |
|
59929 | 1615 |
lemma [induct_simp]: "(\<And>x. induct_equal t x \<Longrightarrow> PROP P x) \<equiv> PROP P t" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1616 |
unfolding induct_equal_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1617 |
proof |
59929 | 1618 |
assume r: "\<And>x. t = x \<Longrightarrow> PROP P x" |
1619 |
show "PROP P t" by (rule r [OF refl]) |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1620 |
next |
59929 | 1621 |
fix x |
1622 |
assume "PROP P t" "t = x" |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1623 |
then show "PROP P x" by simp |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1624 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1625 |
|
59929 | 1626 |
lemma [induct_simp]: "(induct_false \<Longrightarrow> P) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1627 |
unfolding induct_false_def induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1628 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1629 |
|
59929 | 1630 |
lemma [induct_simp]: "(induct_true \<Longrightarrow> PROP P) \<equiv> PROP P" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1631 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1632 |
proof |
59929 | 1633 |
assume "True \<Longrightarrow> PROP P" |
1634 |
then show "PROP P" using TrueI . |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1635 |
next |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1636 |
assume "PROP P" |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1637 |
then show "PROP P" . |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1638 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1639 |
|
59929 | 1640 |
lemma [induct_simp]: "(PROP P \<Longrightarrow> induct_true) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1641 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1642 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1643 |
|
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62913
diff
changeset
|
1644 |
lemma [induct_simp]: "(\<And>x::'a::{}. induct_true) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1645 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1646 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1647 |
|
59929 | 1648 |
lemma [induct_simp]: "induct_implies induct_true P \<equiv> P" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1649 |
by (simp add: induct_implies_def induct_true_def) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1650 |
|
59929 | 1651 |
lemma [induct_simp]: "x = x \<longleftrightarrow> True" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1652 |
by (rule simp_thms) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1653 |
|
59940
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1654 |
end |
18457 | 1655 |
|
69605 | 1656 |
ML_file \<open>~~/src/Tools/induct_tacs.ML\<close> |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1657 |
|
20944 | 1658 |
|
60758 | 1659 |
subsubsection \<open>Coherent logic\<close> |
28325 | 1660 |
|
69605 | 1661 |
ML_file \<open>~~/src/Tools/coherent.ML\<close> |
60758 | 1662 |
ML \<open> |
32734 | 1663 |
structure Coherent = Coherent |
28325 | 1664 |
( |
55632 | 1665 |
val atomize_elimL = @{thm atomize_elimL}; |
1666 |
val atomize_exL = @{thm atomize_exL}; |
|
1667 |
val atomize_conjL = @{thm atomize_conjL}; |
|
1668 |
val atomize_disjL = @{thm atomize_disjL}; |
|
69593 | 1669 |
val operator_names = [\<^const_name>\<open>HOL.disj\<close>, \<^const_name>\<open>HOL.conj\<close>, \<^const_name>\<open>Ex\<close>]; |
28325 | 1670 |
); |
60758 | 1671 |
\<close> |
28325 | 1672 |
|
1673 |
||
60758 | 1674 |
subsubsection \<open>Reorienting equalities\<close> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1675 |
|
60758 | 1676 |
ML \<open> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1677 |
signature REORIENT_PROC = |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1678 |
sig |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1679 |
val add : (term -> bool) -> theory -> theory |
78800 | 1680 |
val proc : Simplifier.proc |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1681 |
end; |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1682 |
|
33523 | 1683 |
structure Reorient_Proc : REORIENT_PROC = |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1684 |
struct |
33523 | 1685 |
structure Data = Theory_Data |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1686 |
( |
33523 | 1687 |
type T = ((term -> bool) * stamp) list; |
1688 |
val empty = []; |
|
67405
e9ab4ad7bd15
uniform use of Standard ML op-infix -- eliminated warnings;
wenzelm
parents:
67399
diff
changeset
|
1689 |
fun merge data : T = Library.merge (eq_snd (op =)) data; |
33523 | 1690 |
); |
1691 |
fun add m = Data.map (cons (m, stamp ())); |
|
1692 |
fun matches thy t = exists (fn (m, _) => m t) (Data.get thy); |
|
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1693 |
|
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1694 |
val meta_reorient = @{thm eq_commute [THEN eq_reflection]}; |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1695 |
fun proc ctxt ct = |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1696 |
let |
42361 | 1697 |
val thy = Proof_Context.theory_of ctxt; |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1698 |
in |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1699 |
case Thm.term_of ct of |
33523 | 1700 |
(_ $ t $ u) => if matches thy u then NONE else SOME meta_reorient |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1701 |
| _ => NONE |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1702 |
end; |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1703 |
end; |
60758 | 1704 |
\<close> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1705 |
|
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1706 |
|
60758 | 1707 |
subsection \<open>Other simple lemmas and lemma duplicates\<close> |
20944 | 1708 |
|
74741
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1709 |
lemma eq_iff_swap: "(x = y \<longleftrightarrow> P) \<Longrightarrow> (y = x \<longleftrightarrow> P)" |
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1710 |
by blast |
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1711 |
|
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1712 |
lemma all_cong1: "(\<And>x. P x = P' x) \<Longrightarrow> (\<forall>x. P x) = (\<forall>x. P' x)" |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1713 |
by auto |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1714 |
|
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1715 |
lemma ex_cong1: "(\<And>x. P x = P' x) \<Longrightarrow> (\<exists>x. P x) = (\<exists>x. P' x)" |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1716 |
by auto |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1717 |
|
67091 | 1718 |
lemma all_cong: "(\<And>x. Q x \<Longrightarrow> P x = P' x) \<Longrightarrow> (\<forall>x. Q x \<longrightarrow> P x) = (\<forall>x. Q x \<longrightarrow> P' x)" |
66836 | 1719 |
by auto |
1720 |
||
67091 | 1721 |
lemma ex_cong: "(\<And>x. Q x \<Longrightarrow> P x = P' x) \<Longrightarrow> (\<exists>x. Q x \<and> P x) = (\<exists>x. Q x \<and> P' x)" |
66836 | 1722 |
by auto |
1723 |
||
60759 | 1724 |
lemma ex1_eq [iff]: "\<exists>!x. x = t" "\<exists>!x. t = x" |
20944 | 1725 |
by blast+ |
1726 |
||
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1727 |
lemma choice_eq: "(\<forall>x. \<exists>!y. P x y) = (\<exists>!f. \<forall>x. P x (f x))" (is "?lhs = ?rhs") |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1728 |
proof (intro iffI allI) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1729 |
assume L: ?lhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1730 |
then have \<section>: "\<forall>x. P x (THE y. P x y)" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1731 |
by (best intro: theI') |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1732 |
show ?rhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1733 |
by (rule ex1I) (use L \<section> in \<open>fast+\<close>) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1734 |
next |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1735 |
fix x |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1736 |
assume R: ?rhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1737 |
then obtain f where f: "\<forall>x. P x (f x)" and f1: "\<And>y. (\<forall>x. P x (y x)) \<Longrightarrow> y = f" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1738 |
by (blast elim: ex1E) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1739 |
show "\<exists>!y. P x y" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1740 |
proof (rule ex1I) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1741 |
show "P x (f x)" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1742 |
using f by blast |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1743 |
show "y = f x" if "P x y" for y |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1744 |
proof - |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1745 |
have "P z (if z = x then y else f z)" for z |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1746 |
using f that by (auto split: if_split) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1747 |
with f1 [of "\<lambda>z. if z = x then y else f z"] f |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1748 |
show ?thesis |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1749 |
by (auto simp add: split: if_split_asm dest: fun_cong) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1750 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1751 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1752 |
qed |
20944 | 1753 |
|
22218 | 1754 |
lemmas eq_sym_conv = eq_commute |
1755 |
||
23037
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
chaieb
parents:
22993
diff
changeset
|
1756 |
lemma nnf_simps: |
63575 | 1757 |
"(\<not> (P \<and> Q)) = (\<not> P \<or> \<not> Q)" |
1758 |
"(\<not> (P \<or> Q)) = (\<not> P \<and> \<not> Q)" |
|
1759 |
"(P \<longrightarrow> Q) = (\<not> P \<or> Q)" |
|
1760 |
"(P = Q) = ((P \<and> Q) \<or> (\<not> P \<and> \<not> Q))" |
|
1761 |
"(\<not> (P = Q)) = ((P \<and> \<not> Q) \<or> (\<not> P \<and> Q))" |
|
1762 |
"(\<not> \<not> P) = P" |
|
1763 |
by blast+ |
|
1764 |
||
23037
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
chaieb
parents:
22993
diff
changeset
|
1765 |
|
60758 | 1766 |
subsection \<open>Basic ML bindings\<close> |
21671 | 1767 |
|
60758 | 1768 |
ML \<open> |
22129 | 1769 |
val FalseE = @{thm FalseE} |
1770 |
val Let_def = @{thm Let_def} |
|
1771 |
val TrueI = @{thm TrueI} |
|
1772 |
val allE = @{thm allE} |
|
1773 |
val allI = @{thm allI} |
|
1774 |
val all_dupE = @{thm all_dupE} |
|
1775 |
val arg_cong = @{thm arg_cong} |
|
1776 |
val box_equals = @{thm box_equals} |
|
1777 |
val ccontr = @{thm ccontr} |
|
1778 |
val classical = @{thm classical} |
|
1779 |
val conjE = @{thm conjE} |
|
1780 |
val conjI = @{thm conjI} |
|
1781 |
val conjunct1 = @{thm conjunct1} |
|
1782 |
val conjunct2 = @{thm conjunct2} |
|
1783 |
val disjCI = @{thm disjCI} |
|
1784 |
val disjE = @{thm disjE} |
|
1785 |
val disjI1 = @{thm disjI1} |
|
1786 |
val disjI2 = @{thm disjI2} |
|
1787 |
val eq_reflection = @{thm eq_reflection} |
|
1788 |
val ex1E = @{thm ex1E} |
|
1789 |
val ex1I = @{thm ex1I} |
|
1790 |
val ex1_implies_ex = @{thm ex1_implies_ex} |
|
1791 |
val exE = @{thm exE} |
|
1792 |
val exI = @{thm exI} |
|
1793 |
val excluded_middle = @{thm excluded_middle} |
|
1794 |
val ext = @{thm ext} |
|
1795 |
val fun_cong = @{thm fun_cong} |
|
1796 |
val iffD1 = @{thm iffD1} |
|
1797 |
val iffD2 = @{thm iffD2} |
|
1798 |
val iffI = @{thm iffI} |
|
1799 |
val impE = @{thm impE} |
|
1800 |
val impI = @{thm impI} |
|
1801 |
val meta_eq_to_obj_eq = @{thm meta_eq_to_obj_eq} |
|
1802 |
val mp = @{thm mp} |
|
1803 |
val notE = @{thm notE} |
|
1804 |
val notI = @{thm notI} |
|
1805 |
val not_all = @{thm not_all} |
|
1806 |
val not_ex = @{thm not_ex} |
|
1807 |
val not_iff = @{thm not_iff} |
|
1808 |
val not_not = @{thm not_not} |
|
1809 |
val not_sym = @{thm not_sym} |
|
1810 |
val refl = @{thm refl} |
|
1811 |
val rev_mp = @{thm rev_mp} |
|
1812 |
val spec = @{thm spec} |
|
1813 |
val ssubst = @{thm ssubst} |
|
1814 |
val subst = @{thm subst} |
|
1815 |
val sym = @{thm sym} |
|
1816 |
val trans = @{thm trans} |
|
60758 | 1817 |
\<close> |
21671 | 1818 |
|
70486 | 1819 |
locale cnf |
1820 |
begin |
|
1821 |
||
1822 |
lemma clause2raw_notE: "\<lbrakk>P; \<not>P\<rbrakk> \<Longrightarrow> False" by auto |
|
1823 |
lemma clause2raw_not_disj: "\<lbrakk>\<not> P; \<not> Q\<rbrakk> \<Longrightarrow> \<not> (P \<or> Q)" by auto |
|
1824 |
lemma clause2raw_not_not: "P \<Longrightarrow> \<not>\<not> P" by auto |
|
1825 |
||
1826 |
lemma iff_refl: "(P::bool) = P" by auto |
|
1827 |
lemma iff_trans: "[| (P::bool) = Q; Q = R |] ==> P = R" by auto |
|
1828 |
lemma conj_cong: "[| P = P'; Q = Q' |] ==> (P \<and> Q) = (P' \<and> Q')" by auto |
|
1829 |
lemma disj_cong: "[| P = P'; Q = Q' |] ==> (P \<or> Q) = (P' \<or> Q')" by auto |
|
1830 |
||
1831 |
lemma make_nnf_imp: "[| (\<not>P) = P'; Q = Q' |] ==> (P \<longrightarrow> Q) = (P' \<or> Q')" by auto |
|
1832 |
lemma make_nnf_iff: "[| P = P'; (\<not>P) = NP; Q = Q'; (\<not>Q) = NQ |] ==> (P = Q) = ((P' \<or> NQ) \<and> (NP \<or> Q'))" by auto |
|
1833 |
lemma make_nnf_not_false: "(\<not>False) = True" by auto |
|
1834 |
lemma make_nnf_not_true: "(\<not>True) = False" by auto |
|
1835 |
lemma make_nnf_not_conj: "[| (\<not>P) = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<and> Q)) = (P' \<or> Q')" by auto |
|
1836 |
lemma make_nnf_not_disj: "[| (\<not>P) = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<or> Q)) = (P' \<and> Q')" by auto |
|
1837 |
lemma make_nnf_not_imp: "[| P = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<longrightarrow> Q)) = (P' \<and> Q')" by auto |
|
1838 |
lemma make_nnf_not_iff: "[| P = P'; (\<not>P) = NP; Q = Q'; (\<not>Q) = NQ |] ==> (\<not>(P = Q)) = ((P' \<or> Q') \<and> (NP \<or> NQ))" by auto |
|
1839 |
lemma make_nnf_not_not: "P = P' ==> (\<not>\<not>P) = P'" by auto |
|
1840 |
||
1841 |
lemma simp_TF_conj_True_l: "[| P = True; Q = Q' |] ==> (P \<and> Q) = Q'" by auto |
|
1842 |
lemma simp_TF_conj_True_r: "[| P = P'; Q = True |] ==> (P \<and> Q) = P'" by auto |
|
1843 |
lemma simp_TF_conj_False_l: "P = False ==> (P \<and> Q) = False" by auto |
|
1844 |
lemma simp_TF_conj_False_r: "Q = False ==> (P \<and> Q) = False" by auto |
|
1845 |
lemma simp_TF_disj_True_l: "P = True ==> (P \<or> Q) = True" by auto |
|
1846 |
lemma simp_TF_disj_True_r: "Q = True ==> (P \<or> Q) = True" by auto |
|
1847 |
lemma simp_TF_disj_False_l: "[| P = False; Q = Q' |] ==> (P \<or> Q) = Q'" by auto |
|
1848 |
lemma simp_TF_disj_False_r: "[| P = P'; Q = False |] ==> (P \<or> Q) = P'" by auto |
|
1849 |
||
1850 |
lemma make_cnf_disj_conj_l: "[| (P \<or> R) = PR; (Q \<or> R) = QR |] ==> ((P \<and> Q) \<or> R) = (PR \<and> QR)" by auto |
|
1851 |
lemma make_cnf_disj_conj_r: "[| (P \<or> Q) = PQ; (P \<or> R) = PR |] ==> (P \<or> (Q \<and> R)) = (PQ \<and> PR)" by auto |
|
1852 |
||
1853 |
lemma make_cnfx_disj_ex_l: "((\<exists>(x::bool). P x) \<or> Q) = (\<exists>x. P x \<or> Q)" by auto |
|
1854 |
lemma make_cnfx_disj_ex_r: "(P \<or> (\<exists>(x::bool). Q x)) = (\<exists>x. P \<or> Q x)" by auto |
|
1855 |
lemma make_cnfx_newlit: "(P \<or> Q) = (\<exists>x. (P \<or> x) \<and> (Q \<or> \<not>x))" by auto |
|
1856 |
lemma make_cnfx_ex_cong: "(\<forall>(x::bool). P x = Q x) \<Longrightarrow> (\<exists>x. P x) = (\<exists>x. Q x)" by auto |
|
1857 |
||
1858 |
lemma weakening_thm: "[| P; Q |] ==> Q" by auto |
|
1859 |
||
1860 |
lemma cnftac_eq_imp: "[| P = Q; P |] ==> Q" by auto |
|
1861 |
||
1862 |
end |
|
1863 |
||
69605 | 1864 |
ML_file \<open>Tools/cnf.ML\<close> |
55239 | 1865 |
|
21671 | 1866 |
|
61799 | 1867 |
section \<open>\<open>NO_MATCH\<close> simproc\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1868 |
|
60758 | 1869 |
text \<open> |
63575 | 1870 |
The simplification procedure can be used to avoid simplification of terms |
1871 |
of a certain form. |
|
60758 | 1872 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1873 |
|
63575 | 1874 |
definition NO_MATCH :: "'a \<Rightarrow> 'b \<Rightarrow> bool" |
1875 |
where "NO_MATCH pat val \<equiv> True" |
|
58830 | 1876 |
|
63575 | 1877 |
lemma NO_MATCH_cong[cong]: "NO_MATCH pat val = NO_MATCH pat val" |
1878 |
by (rule refl) |
|
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1879 |
|
58830 | 1880 |
declare [[coercion_args NO_MATCH - -]] |
1881 |
||
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1882 |
simproc_setup NO_MATCH ("NO_MATCH pat val") = \<open>K (fn ctxt => fn ct => |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1883 |
let |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1884 |
val thy = Proof_Context.theory_of ctxt |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1885 |
val dest_binop = Term.dest_comb #> apfst (Term.dest_comb #> snd) |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1886 |
val m = Pattern.matches thy (dest_binop (Thm.term_of ct)) |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1887 |
in if m then NONE else SOME @{thm NO_MATCH_def} end) |
60758 | 1888 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1889 |
|
60758 | 1890 |
text \<open> |
69593 | 1891 |
This setup ensures that a rewrite rule of the form \<^term>\<open>NO_MATCH pat val \<Longrightarrow> t\<close> |
63575 | 1892 |
is only applied, if the pattern \<open>pat\<close> does not match the value \<open>val\<close>. |
60758 | 1893 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1894 |
|
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1895 |
|
63575 | 1896 |
text\<open> |
1897 |
Tagging a premise of a simp rule with ASSUMPTION forces the simplifier |
|
1898 |
not to simplify the argument and to solve it by an assumption. |
|
1899 |
\<close> |
|
61202 | 1900 |
|
63575 | 1901 |
definition ASSUMPTION :: "bool \<Rightarrow> bool" |
1902 |
where "ASSUMPTION A \<equiv> A" |
|
61202 | 1903 |
|
1904 |
lemma ASSUMPTION_cong[cong]: "ASSUMPTION A = ASSUMPTION A" |
|
63575 | 1905 |
by (rule refl) |
61202 | 1906 |
|
1907 |
lemma ASSUMPTION_I: "A \<Longrightarrow> ASSUMPTION A" |
|
63575 | 1908 |
by (simp add: ASSUMPTION_def) |
61202 | 1909 |
|
1910 |
lemma ASSUMPTION_D: "ASSUMPTION A \<Longrightarrow> A" |
|
63575 | 1911 |
by (simp add: ASSUMPTION_def) |
61202 | 1912 |
|
61222 | 1913 |
setup \<open> |
61202 | 1914 |
let |
1915 |
val asm_sol = mk_solver "ASSUMPTION" (fn ctxt => |
|
1916 |
resolve_tac ctxt [@{thm ASSUMPTION_I}] THEN' |
|
1917 |
resolve_tac ctxt (Simplifier.prems_of ctxt)) |
|
1918 |
in |
|
1919 |
map_theory_simpset (fn ctxt => Simplifier.addSolver (ctxt,asm_sol)) |
|
1920 |
end |
|
61222 | 1921 |
\<close> |
61202 | 1922 |
|
1923 |
||
60758 | 1924 |
subsection \<open>Code generator setup\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1925 |
|
60758 | 1926 |
subsubsection \<open>Generic code generator preprocessor setup\<close> |
31151 | 1927 |
|
63575 | 1928 |
lemma conj_left_cong: "P \<longleftrightarrow> Q \<Longrightarrow> P \<and> R \<longleftrightarrow> Q \<and> R" |
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1929 |
by (fact arg_cong) |
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1930 |
|
63575 | 1931 |
lemma disj_left_cong: "P \<longleftrightarrow> Q \<Longrightarrow> P \<or> R \<longleftrightarrow> Q \<or> R" |
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1932 |
by (fact arg_cong) |
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1933 |
|
60758 | 1934 |
setup \<open> |
58826 | 1935 |
Code_Preproc.map_pre (put_simpset HOL_basic_ss) #> |
1936 |
Code_Preproc.map_post (put_simpset HOL_basic_ss) #> |
|
1937 |
Code_Simp.map_ss (put_simpset HOL_basic_ss #> |
|
1938 |
Simplifier.add_cong @{thm conj_left_cong} #> |
|
1939 |
Simplifier.add_cong @{thm disj_left_cong}) |
|
60758 | 1940 |
\<close> |
31151 | 1941 |
|
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1942 |
|
60758 | 1943 |
subsubsection \<open>Equality\<close> |
24844
98c006a30218
certificates for code generator case expressions
haftmann
parents:
24842
diff
changeset
|
1944 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1945 |
class equal = |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1946 |
fixes equal :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1947 |
assumes equal_eq: "equal x y \<longleftrightarrow> x = y" |
26513 | 1948 |
begin |
1949 |
||
67399 | 1950 |
lemma equal: "equal = (=)" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1951 |
by (rule ext equal_eq)+ |
28346
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
haftmann
parents:
28325
diff
changeset
|
1952 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1953 |
lemma equal_refl: "equal x x \<longleftrightarrow> True" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
1954 |
unfolding equal by (rule iffI TrueI refl)+ |
28346
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
haftmann
parents:
28325
diff
changeset
|
1955 |
|
67399 | 1956 |
lemma eq_equal: "(=) \<equiv> equal" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1957 |
by (rule eq_reflection) (rule ext, rule ext, rule sym, rule equal_eq) |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1958 |
|
26513 | 1959 |
end |
1960 |
||
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1961 |
declare eq_equal [symmetric, code_post] |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1962 |
declare eq_equal [code] |
30966 | 1963 |
|
78799 | 1964 |
simproc_setup passive equal (HOL.eq) = |
78794 | 1965 |
\<open>fn _ => fn _ => fn ct => |
1966 |
(case Thm.term_of ct of |
|
80662 | 1967 |
\<^Const_>\<open>HOL.eq T\<close> => if is_Type T then SOME @{thm eq_equal} else NONE |
78794 | 1968 |
| _ => NONE)\<close> |
1969 |
||
80701 | 1970 |
setup \<open>Code_Preproc.map_pre (Simplifier.add_proc \<^simproc>\<open>equal\<close>)\<close> |
31151 | 1971 |
|
30966 | 1972 |
|
60758 | 1973 |
subsubsection \<open>Generic code generator foundation\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1974 |
|
69593 | 1975 |
text \<open>Datatype \<^typ>\<open>bool\<close>\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1976 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1977 |
code_datatype True False |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1978 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1979 |
lemma [code]: |
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1980 |
shows "False \<and> P \<longleftrightarrow> False" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1981 |
and "True \<and> P \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1982 |
and "P \<and> False \<longleftrightarrow> False" |
63575 | 1983 |
and "P \<and> True \<longleftrightarrow> P" |
1984 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1985 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1986 |
lemma [code]: |
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1987 |
shows "False \<or> P \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1988 |
and "True \<or> P \<longleftrightarrow> True" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1989 |
and "P \<or> False \<longleftrightarrow> P" |
63575 | 1990 |
and "P \<or> True \<longleftrightarrow> True" |
1991 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1992 |
|
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1993 |
lemma [code]: |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1994 |
shows "(False \<longrightarrow> P) \<longleftrightarrow> True" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1995 |
and "(True \<longrightarrow> P) \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1996 |
and "(P \<longrightarrow> False) \<longleftrightarrow> \<not> P" |
63575 | 1997 |
and "(P \<longrightarrow> True) \<longleftrightarrow> True" |
1998 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1999 |
|
69593 | 2000 |
text \<open>More about \<^typ>\<open>prop\<close>\<close> |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2001 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2002 |
lemma [code nbe]: |
58826 | 2003 |
shows "(True \<Longrightarrow> PROP Q) \<equiv> PROP Q" |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2004 |
and "(PROP Q \<Longrightarrow> True) \<equiv> Trueprop True" |
63575 | 2005 |
and "(P \<Longrightarrow> R) \<equiv> Trueprop (P \<longrightarrow> R)" |
2006 |
by (auto intro!: equal_intr_rule) |
|
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2007 |
|
63575 | 2008 |
lemma Trueprop_code [code]: "Trueprop True \<equiv> Code_Generator.holds" |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2009 |
by (auto intro!: equal_intr_rule holds) |
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2010 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2011 |
declare Trueprop_code [symmetric, code_post] |
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2012 |
|
60758 | 2013 |
text \<open>Equality\<close> |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2014 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2015 |
declare simp_thms(6) [code nbe] |
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2016 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2017 |
instantiation itself :: (type) equal |
31132 | 2018 |
begin |
2019 |
||
63575 | 2020 |
definition equal_itself :: "'a itself \<Rightarrow> 'a itself \<Rightarrow> bool" |
2021 |
where "equal_itself x y \<longleftrightarrow> x = y" |
|
31132 | 2022 |
|
63575 | 2023 |
instance |
2024 |
by standard (fact equal_itself_def) |
|
31132 | 2025 |
|
2026 |
end |
|
2027 |
||
63575 | 2028 |
lemma equal_itself_code [code]: "equal TYPE('a) TYPE('a) \<longleftrightarrow> True" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2029 |
by (simp add: equal) |
31132 | 2030 |
|
69593 | 2031 |
setup \<open>Sign.add_const_constraint (\<^const_name>\<open>equal\<close>, SOME \<^typ>\<open>'a::type \<Rightarrow> 'a \<Rightarrow> bool\<close>)\<close> |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2032 |
|
67399 | 2033 |
lemma equal_alias_cert: "OFCLASS('a, equal_class) \<equiv> (((=) :: 'a \<Rightarrow> 'a \<Rightarrow> bool) \<equiv> equal)" |
63575 | 2034 |
(is "?ofclass \<equiv> ?equal") |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2035 |
proof |
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2036 |
assume "PROP ?ofclass" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2037 |
show "PROP ?equal" |
69593 | 2038 |
by (tactic \<open>ALLGOALS (resolve_tac \<^context> [Thm.unconstrainT @{thm eq_equal}])\<close>) |
60758 | 2039 |
(fact \<open>PROP ?ofclass\<close>) |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2040 |
next |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2041 |
assume "PROP ?equal" |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2042 |
show "PROP ?ofclass" proof |
60758 | 2043 |
qed (simp add: \<open>PROP ?equal\<close>) |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2044 |
qed |
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2045 |
|
69593 | 2046 |
setup \<open>Sign.add_const_constraint (\<^const_name>\<open>equal\<close>, SOME \<^typ>\<open>'a::equal \<Rightarrow> 'a \<Rightarrow> bool\<close>)\<close> |
58826 | 2047 |
|
60758 | 2048 |
setup \<open>Nbe.add_const_alias @{thm equal_alias_cert}\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2049 |
|
60758 | 2050 |
text \<open>Cases\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2051 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2052 |
lemma Let_case_cert: |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2053 |
assumes "CASE \<equiv> (\<lambda>x. Let x f)" |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2054 |
shows "CASE x \<equiv> f x" |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2055 |
using assms by simp_all |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2056 |
|
60758 | 2057 |
setup \<open> |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
66109
diff
changeset
|
2058 |
Code.declare_case_global @{thm Let_case_cert} #> |
69593 | 2059 |
Code.declare_undefined_global \<^const_name>\<open>undefined\<close> |
60758 | 2060 |
\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2061 |
|
54890
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents:
54742
diff
changeset
|
2062 |
declare [[code abort: undefined]] |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2063 |
|
38972 | 2064 |
|
60758 | 2065 |
subsubsection \<open>Generic code generator target languages\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2066 |
|
69593 | 2067 |
text \<open>type \<^typ>\<open>bool\<close>\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2068 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2069 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2070 |
type_constructor bool \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2071 |
(SML) "bool" and (OCaml) "bool" and (Haskell) "Bool" and (Scala) "Boolean" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2072 |
| constant True \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2073 |
(SML) "true" and (OCaml) "true" and (Haskell) "True" and (Scala) "true" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2074 |
| constant False \<rightharpoonup> |
58826 | 2075 |
(SML) "false" and (OCaml) "false" and (Haskell) "False" and (Scala) "false" |
34294 | 2076 |
|
81706 | 2077 |
code_reserved |
2078 |
(SML) bool true false |
|
2079 |
and (OCaml) bool |
|
2080 |
and (Scala) Boolean |
|
34294 | 2081 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2082 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2083 |
constant Not \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2084 |
(SML) "not" and (OCaml) "not" and (Haskell) "not" and (Scala) "'! _" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2085 |
| constant HOL.conj \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2086 |
(SML) infixl 1 "andalso" and (OCaml) infixl 3 "&&" and (Haskell) infixr 3 "&&" and (Scala) infixl 3 "&&" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2087 |
| constant HOL.disj \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2088 |
(SML) infixl 0 "orelse" and (OCaml) infixl 2 "||" and (Haskell) infixl 2 "||" and (Scala) infixl 1 "||" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2089 |
| constant HOL.implies \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2090 |
(SML) "!(if (_)/ then (_)/ else true)" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2091 |
and (OCaml) "!(if (_)/ then (_)/ else true)" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2092 |
and (Haskell) "!(if (_)/ then (_)/ else True)" |
80088
5afbf04418ec
avoid Scala if-expressions and thus make it work both for -new-syntax or -old-syntax;
wenzelm
parents:
79772
diff
changeset
|
2093 |
and (Scala) "!((_) match {/ case true => (_)/ case false => true/ })" |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2094 |
| constant If \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2095 |
(SML) "!(if (_)/ then (_)/ else (_))" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2096 |
and (OCaml) "!(if (_)/ then (_)/ else (_))" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2097 |
and (Haskell) "!(if (_)/ then (_)/ else (_))" |
80088
5afbf04418ec
avoid Scala if-expressions and thus make it work both for -new-syntax or -old-syntax;
wenzelm
parents:
79772
diff
changeset
|
2098 |
and (Scala) "!((_) match {/ case true => (_)/ case false => (_)/ })" |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2099 |
|
81706 | 2100 |
code_reserved |
2101 |
(SML) not |
|
2102 |
and (OCaml) not |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2103 |
|
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2104 |
code_identifier |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2105 |
code_module Pure \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2106 |
(SML) HOL and (OCaml) HOL and (Haskell) HOL and (Scala) HOL |
39026 | 2107 |
|
63575 | 2108 |
text \<open>Using built-in Haskell equality.\<close> |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2109 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2110 |
type_class equal \<rightharpoonup> (Haskell) "Eq" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2111 |
| constant HOL.equal \<rightharpoonup> (Haskell) infix 4 "==" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2112 |
| constant HOL.eq \<rightharpoonup> (Haskell) infix 4 "==" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2113 |
|
63575 | 2114 |
text \<open>\<open>undefined\<close>\<close> |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2115 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2116 |
constant undefined \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2117 |
(SML) "!(raise/ Fail/ \"undefined\")" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2118 |
and (OCaml) "failwith/ \"undefined\"" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2119 |
and (Haskell) "error/ \"undefined\"" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2120 |
and (Scala) "!sys.error(\"undefined\")" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2121 |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2122 |
|
60758 | 2123 |
subsubsection \<open>Evaluation and normalization by evaluation\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2124 |
|
60758 | 2125 |
method_setup eval = \<open> |
58826 | 2126 |
let |
2127 |
fun eval_tac ctxt = |
|
74536 | 2128 |
let val conv = Code_Runtime.dynamic_holds_conv |
58839 | 2129 |
in |
74536 | 2130 |
CONVERSION (Conv.params_conv ~1 (Conv.concl_conv ~1 o conv) ctxt) THEN' |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2131 |
resolve_tac ctxt [TrueI] |
58839 | 2132 |
end |
58826 | 2133 |
in |
2134 |
Scan.succeed (SIMPLE_METHOD' o eval_tac) |
|
2135 |
end |
|
60758 | 2136 |
\<close> "solve goal by evaluation" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2137 |
|
60758 | 2138 |
method_setup normalization = \<open> |
46190
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2139 |
Scan.succeed (fn ctxt => |
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2140 |
SIMPLE_METHOD' |
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2141 |
(CHANGED_PROP o |
55757 | 2142 |
(CONVERSION (Nbe.dynamic_conv ctxt) |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2143 |
THEN_ALL_NEW (TRY o resolve_tac ctxt [TrueI])))) |
60758 | 2144 |
\<close> "solve goal by normalization" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2145 |
|
31902 | 2146 |
|
60758 | 2147 |
subsection \<open>Counterexample Search Units\<close> |
33084 | 2148 |
|
60758 | 2149 |
subsubsection \<open>Quickcheck\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2150 |
|
33084 | 2151 |
quickcheck_params [size = 5, iterations = 50] |
2152 |
||
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2153 |
|
60758 | 2154 |
subsubsection \<open>Nitpick setup\<close> |
30309
188f0658af9f
Added a "nitpick_maybe" symbol, which is used by Nitpick. This will go away once Nitpick is part of HOL.
blanchet
parents:
30254
diff
changeset
|
2155 |
|
59028 | 2156 |
named_theorems nitpick_unfold "alternative definitions of constants as needed by Nitpick" |
2157 |
and nitpick_simp "equational specification of constants as needed by Nitpick" |
|
2158 |
and nitpick_psimp "partial equational specification of constants as needed by Nitpick" |
|
2159 |
and nitpick_choice_spec "choice specification of constants as needed by Nitpick" |
|
30980 | 2160 |
|
41792
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
41636
diff
changeset
|
2161 |
declare if_bool_eq_conj [nitpick_unfold, no_atp] |
63575 | 2162 |
and if_bool_eq_disj [no_atp] |
41792
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
41636
diff
changeset
|
2163 |
|
29863
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
blanchet
parents:
29608
diff
changeset
|
2164 |
|
60758 | 2165 |
subsection \<open>Preprocessing for the predicate compiler\<close> |
33084 | 2166 |
|
59028 | 2167 |
named_theorems code_pred_def "alternative definitions of constants for the Predicate Compiler" |
2168 |
and code_pred_inline "inlining definitions for the Predicate Compiler" |
|
2169 |
and code_pred_simp "simplification rules for the optimisations in the Predicate Compiler" |
|
33084 | 2170 |
|
2171 |
||
60758 | 2172 |
subsection \<open>Legacy tactics and ML bindings\<close> |
21671 | 2173 |
|
60758 | 2174 |
ML \<open> |
58826 | 2175 |
(* combination of (spec RS spec RS ...(j times) ... spec RS mp) *) |
2176 |
local |
|
80662 | 2177 |
fun wrong_prem \<^Const_>\<open>All _ for \<open>Abs (_, _, t)\<close>\<close> = wrong_prem t |
58826 | 2178 |
| wrong_prem (Bound _) = true |
2179 |
| wrong_prem _ = false; |
|
2180 |
val filter_right = filter (not o wrong_prem o HOLogic.dest_Trueprop o hd o Thm.prems_of); |
|
61914 | 2181 |
fun smp i = funpow i (fn m => filter_right ([spec] RL m)) [mp]; |
58826 | 2182 |
in |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2183 |
fun smp_tac ctxt j = EVERY' [dresolve_tac ctxt (smp j), assume_tac ctxt]; |
58826 | 2184 |
end; |
22839 | 2185 |
|
58826 | 2186 |
local |
2187 |
val nnf_ss = |
|
69593 | 2188 |
simpset_of (put_simpset HOL_basic_ss \<^context> addsimps @{thms simp_thms nnf_simps}); |
58826 | 2189 |
in |
2190 |
fun nnf_conv ctxt = Simplifier.rewrite (put_simpset nnf_ss ctxt); |
|
2191 |
end |
|
60758 | 2192 |
\<close> |
21671 | 2193 |
|
38866 | 2194 |
hide_const (open) eq equal |
2195 |
||
14357 | 2196 |
end |