src/HOL/HOL.thy
author blanchet
Mon, 02 Nov 2015 21:58:38 +0100
changeset 61551 078c9fd2e052
parent 61378 3e04c9ca001a
child 61799 4cf66f21b764
permissions -rw-r--r--
don't pollute local theory with needless names
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/HOL.thy
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     2
    Author:     Tobias Nipkow, Markus Wenzel, and Larry Paulson
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     3
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
     5
section \<open>The basis of Higher-Order Logic\<close>
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15103
diff changeset
     7
theory HOL
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
     8
imports Pure "~~/src/Tools/Code_Generator"
46950
d0181abdbdac declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents: 46497
diff changeset
     9
keywords
52432
c03090937c3b tuned message -- more markup;
wenzelm
parents: 52230
diff changeset
    10
  "try" "solve_direct" "quickcheck" "print_coercions" "print_claset"
c03090937c3b tuned message -- more markup;
wenzelm
parents: 52230
diff changeset
    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
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15103
diff changeset
    13
begin
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    14
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    15
ML_file "~~/src/Tools/misc_legacy.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    16
ML_file "~~/src/Tools/try.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    17
ML_file "~~/src/Tools/quickcheck.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    18
ML_file "~~/src/Tools/solve_direct.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    19
ML_file "~~/src/Tools/IsaPlanner/zipper.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    20
ML_file "~~/src/Tools/IsaPlanner/isand.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    21
ML_file "~~/src/Tools/IsaPlanner/rw_inst.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    22
ML_file "~~/src/Provers/hypsubst.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    23
ML_file "~~/src/Provers/splitter.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    24
ML_file "~~/src/Provers/classical.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    25
ML_file "~~/src/Provers/blast.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    26
ML_file "~~/src/Provers/clasimp.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    27
ML_file "~~/src/Tools/eqsubst.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    28
ML_file "~~/src/Provers/quantifier1.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    29
ML_file "~~/src/Tools/atomize_elim.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    30
ML_file "~~/src/Tools/cong_tac.ML"
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
    31
ML_file "~~/src/Tools/intuitionistic.ML" setup \<open>Intuitionistic.method_setup @{binding iprover}\<close>
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    32
ML_file "~~/src/Tools/project_rule.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    33
ML_file "~~/src/Tools/subtyping.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    34
ML_file "~~/src/Tools/case_product.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
    35
30165
6ee87f67d9cd moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
wenzelm
parents: 30160
diff changeset
    36
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    37
ML \<open>Plugin_Name.declare_setup @{binding extraction}\<close>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    38
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    39
ML \<open>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    40
  Plugin_Name.declare_setup @{binding quickcheck_random};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    41
  Plugin_Name.declare_setup @{binding quickcheck_exhaustive};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    42
  Plugin_Name.declare_setup @{binding quickcheck_bounded_forall};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    43
  Plugin_Name.declare_setup @{binding quickcheck_full_exhaustive};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    44
  Plugin_Name.declare_setup @{binding quickcheck_narrowing};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    45
\<close>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    46
ML \<open>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    47
  Plugin_Name.define_setup @{binding quickcheck}
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    48
   [@{plugin quickcheck_exhaustive},
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    49
    @{plugin quickcheck_random},
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    50
    @{plugin quickcheck_bounded_forall},
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    51
    @{plugin quickcheck_full_exhaustive},
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    52
    @{plugin quickcheck_narrowing}]
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    53
\<close>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    54
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 57964
diff changeset
    55
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
    56
subsection \<open>Primitive logic\<close>
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    57
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
    58
subsubsection \<open>Core syntax\<close>
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    59
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
    60
setup \<open>Axclass.class_axiomatization (@{binding type}, [])\<close>
36452
d37c6eed8117 renamed command 'defaultsort' to 'default_sort';
wenzelm
parents: 36365
diff changeset
    61
default_sort type
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
    62
setup \<open>Object_Logic.add_base_sort @{sort type}\<close>
25460
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    63
55383
a416780523e2 more explicit axiomatization;
wenzelm
parents: 55239
diff changeset
    64
axiomatization where fun_arity: "OFCLASS('a \<Rightarrow> 'b, type_class)"
a416780523e2 more explicit axiomatization;
wenzelm
parents: 55239
diff changeset
    65
instance "fun" :: (type, type) type by (rule fun_arity)
a416780523e2 more explicit axiomatization;
wenzelm
parents: 55239
diff changeset
    66
a416780523e2 more explicit axiomatization;
wenzelm
parents: 55239
diff changeset
    67
axiomatization where itself_arity: "OFCLASS('a itself, type_class)"
a416780523e2 more explicit axiomatization;
wenzelm
parents: 55239
diff changeset
    68
instance itself :: (type) type by (rule itself_arity)
25460
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    69
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    70
typedecl bool
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    72
judgment
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    73
  Trueprop      :: "bool \<Rightarrow> prop"                   ("(_)" 5)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
    75
axiomatization
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    76
  implies       :: "[bool, bool] \<Rightarrow> bool"           (infixr "-->" 25)  and
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    77
  eq            :: "['a, 'a] \<Rightarrow> bool"               (infixl "=" 50)  and
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    78
  The           :: "('a \<Rightarrow> bool) \<Rightarrow> 'a"
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
    79
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    80
consts
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    81
  True          :: bool
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    82
  False         :: bool
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    83
  Not           :: "bool \<Rightarrow> bool"                   ("~ _" [40] 40)
38795
848be46708dc formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents: 38786
diff changeset
    84
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    85
  conj          :: "[bool, bool] \<Rightarrow> bool"           (infixr "&" 35)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    86
  disj          :: "[bool, bool] \<Rightarrow> bool"           (infixr "|" 30)
38555
bd6359ed1636 deglobalized named HOL constants
haftmann
parents: 38547
diff changeset
    87
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    88
  All           :: "('a \<Rightarrow> bool) \<Rightarrow> bool"           (binder "ALL " 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    89
  Ex            :: "('a \<Rightarrow> bool) \<Rightarrow> bool"           (binder "EX " 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    90
  Ex1           :: "('a \<Rightarrow> bool) \<Rightarrow> bool"           (binder "EX! " 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    92
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
    93
subsubsection \<open>Additional concrete syntax\<close>
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    94
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
    95
notation (output)
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38857
diff changeset
    96
  eq  (infix "=" 50)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    97
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    98
abbreviation
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
    99
  not_equal :: "['a, 'a] \<Rightarrow> bool"  (infixl "~=" 50) where
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   100
  "x ~= y \<equiv> ~ (x = y)"
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   101
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
   102
notation (output)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   103
  not_equal  (infix "~=" 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   104
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
   105
notation (xsymbols)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
   106
  Not  ("\<not> _" [40] 40) and
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38857
diff changeset
   107
  conj  (infixr "\<and>" 35) and
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38857
diff changeset
   108
  disj  (infixr "\<or>" 30) and
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38857
diff changeset
   109
  implies  (infixr "\<longrightarrow>" 25) and
50360
628b37b9e8a2 \<noteq> now has the same associativity as ~= and =
nipkow
parents: 49339
diff changeset
   110
  not_equal  (infixl "\<noteq>" 50)
628b37b9e8a2 \<noteq> now has the same associativity as ~= and =
nipkow
parents: 49339
diff changeset
   111
628b37b9e8a2 \<noteq> now has the same associativity as ~= and =
nipkow
parents: 49339
diff changeset
   112
notation (xsymbols output)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   113
  not_equal  (infix "\<noteq>" 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   114
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   115
abbreviation (iff)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   116
  iff :: "[bool, bool] \<Rightarrow> bool"  (infixr "<->" 25) where
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   117
  "A <-> B \<equiv> A = B"
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   118
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
   119
notation (xsymbols)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   120
  iff  (infixr "\<longleftrightarrow>" 25)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   121
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   122
syntax "_The" :: "[pttrn, bool] \<Rightarrow> 'a"  ("(3THE _./ _)" [0, 10] 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   123
translations "THE x. P" \<rightleftharpoons> "CONST The (\<lambda>x. P)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   124
print_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51798
diff changeset
   125
  [(@{const_syntax The}, fn _ => fn [Abs abs] =>
46125
00cd193a48dc improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 45654
diff changeset
   126
      let val (x, t) = Syntax_Trans.atomic_abs_tr' abs
00cd193a48dc improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 45654
diff changeset
   127
      in Syntax.const @{syntax_const "_The"} $ x $ t end)]
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   128
\<close>  -- \<open>To avoid eta-contraction of body\<close>
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
46125
00cd193a48dc improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 45654
diff changeset
   130
nonterminal letbinds and letbind
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
syntax
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   132
  "_bind"       :: "[pttrn, 'a] \<Rightarrow> letbind"              ("(2_ =/ _)" 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   133
  ""            :: "letbind \<Rightarrow> letbinds"                 ("_")
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   134
  "_binds"      :: "[letbind, letbinds] \<Rightarrow> letbinds"     ("_;/ _")
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   135
  "_Let"        :: "[letbinds, 'a] \<Rightarrow> 'a"                ("(let (_)/ in (_))" [0, 10] 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
46125
00cd193a48dc improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 45654
diff changeset
   137
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
   138
syntax
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   139
  "_case_syntax" :: "['a, cases_syn] \<Rightarrow> 'b"  ("(case _ of/ _)" 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   140
  "_case1" :: "['a, 'b] \<Rightarrow> case_syn"  ("(2_ =>/ _)" 10)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   141
  "" :: "case_syn \<Rightarrow> cases_syn"  ("_")
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   142
  "_case2" :: "[case_syn, cases_syn] \<Rightarrow> cases_syn"  ("_/ | _")
42057
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 41865
diff changeset
   143
syntax (xsymbols)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   144
  "_case1" :: "['a, 'b] \<Rightarrow> case_syn"  ("(2_ \<Rightarrow>/ _)" 10)
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   145
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   146
notation (xsymbols)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   147
  All  (binder "\<forall>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   148
  Ex  (binder "\<exists>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   149
  Ex1  (binder "\<exists>!" 10)
2372
a2999e19703b fixed alternative quantifier symbol syntax;
wenzelm
parents: 2368
diff changeset
   150
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   151
notation (HOL)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   152
  All  (binder "! " 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   153
  Ex  (binder "? " 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   154
  Ex1  (binder "?! " 10)
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   155
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   156
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   157
subsubsection \<open>Axioms and basic definitions\<close>
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
   158
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   159
axiomatization where
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   160
  refl: "t = (t::'a)" and
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   161
  subst: "s = t \<Longrightarrow> P s \<Longrightarrow> P t" and
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   162
  ext: "(\<And>x::'a. (f x ::'b) = g x) \<Longrightarrow> (\<lambda>x. f x) = (\<lambda>x. g x)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   163
    -- \<open>Extensionality is built into the meta-logic, and this rule expresses
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   164
         a related property.  It is an eta-expanded version of the traditional
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   165
         rule, and similar to the ABS rule of HOL\<close> and
6289
062aa156a300 added a commment on the "ext" rule
paulson
parents: 6027
diff changeset
   166
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
   167
  the_eq_trivial: "(THE x. x = a) = (a::'a)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   169
axiomatization where
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   170
  impI: "(P \<Longrightarrow> Q) \<Longrightarrow> P \<longrightarrow> Q" and
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   171
  mp: "\<lbrakk>P \<longrightarrow> Q; P\<rbrakk> \<Longrightarrow> Q" and
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   172
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   173
  iff: "(P \<longrightarrow> Q) \<longrightarrow> (Q \<longrightarrow> P) \<longrightarrow> (P = Q)" and
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   174
  True_or_False: "(P = True) \<or> (P = False)"
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   175
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
defs
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   177
  True_def:     "True      \<equiv> ((\<lambda>x::bool. x) = (\<lambda>x. x))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   178
  All_def:      "All P     \<equiv> (P = (\<lambda>x. True))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   179
  Ex_def:       "Ex P      \<equiv> \<forall>Q. (\<forall>x. P x \<longrightarrow> Q) \<longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   180
  False_def:    "False     \<equiv> (\<forall>P. P)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   181
  not_def:      "\<not> P       \<equiv> P \<longrightarrow> False"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   182
  and_def:      "P \<and> Q     \<equiv> \<forall>R. (P \<longrightarrow> Q \<longrightarrow> R) \<longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   183
  or_def:       "P \<or> Q     \<equiv> \<forall>R. (P \<longrightarrow> R) \<longrightarrow> (Q \<longrightarrow> R) \<longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   184
  Ex1_def:      "Ex1 P     \<equiv> \<exists>x. P x \<and> (\<forall>y. P y \<longrightarrow> y = x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   186
definition If :: "bool \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a" ("(if (_)/ then (_)/ else (_))" [0, 0, 10] 10)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   187
  where "If P x y \<equiv> (THE z::'a. (P = True \<longrightarrow> z = x) \<and> (P = False \<longrightarrow> z = y))"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   189
definition Let :: "'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'b"
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   190
  where "Let s f \<equiv> f s"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
   191
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
   192
translations
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   193
  "_Let (_binds b bs) e"  \<rightleftharpoons> "_Let b (_Let bs e)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   194
  "let x = a in e"        \<rightleftharpoons> "CONST Let a (\<lambda>x. e)"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
   195
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   196
axiomatization undefined :: 'a
22481
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   197
46973
d68798000e46 modernized axiomatization;
wenzelm
parents: 46950
diff changeset
   198
class default = fixes default :: 'a
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   199
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   200
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   201
subsection \<open>Fundamental rules\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   202
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   203
subsubsection \<open>Equality\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   204
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   205
lemma sym: "s = t \<Longrightarrow> t = s"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   206
  by (erule subst) (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   207
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   208
lemma ssubst: "t = s \<Longrightarrow> P s \<Longrightarrow> P t"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   209
  by (drule sym) (erule subst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   210
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   211
lemma trans: "\<lbrakk>r = s; s = t\<rbrakk> \<Longrightarrow> r = t"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   212
  by (erule subst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   213
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   214
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
   215
  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
   216
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   217
lemma meta_eq_to_obj_eq:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   218
  assumes meq: "A \<equiv> B"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   219
  shows "A = B"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   220
  by (unfold meq) (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   221
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   222
text \<open>Useful with @{text erule} for proving equalities from known equalities.\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   223
     (* a = b
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   224
        |   |
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   225
        c = d   *)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   226
lemma box_equals: "\<lbrakk>a = b; a = c; b = d\<rbrakk> \<Longrightarrow> c = d"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   227
apply (rule trans)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   228
apply (rule trans)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   229
apply (rule sym)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   230
apply assumption+
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   231
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   232
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   233
text \<open>For calculational reasoning:\<close>
15524
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   234
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   235
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
   236
  by (rule ssubst)
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   237
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   238
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
   239
  by (rule subst)
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   240
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   241
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   242
subsubsection \<open>Congruence rules for application\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   243
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   244
text \<open>Similar to @{text AP_THM} in Gordon's HOL.\<close>
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   245
lemma fun_cong: "(f :: 'a \<Rightarrow> 'b) = g \<Longrightarrow> f x = g x"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   246
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   247
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   248
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   249
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   250
text \<open>Similar to @{text AP_TERM} in Gordon's HOL and FOL's @{text subst_context}.\<close>
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   251
lemma arg_cong: "x = y \<Longrightarrow> f x = f y"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   252
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   253
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   254
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   255
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   256
lemma arg_cong2: "\<lbrakk>a = b; c = d\<rbrakk> \<Longrightarrow> f a c = f b d"
15655
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   257
apply (erule ssubst)+
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   258
apply (rule refl)
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   259
done
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   260
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   261
lemma cong: "\<lbrakk>f = g; (x::'a) = y\<rbrakk> \<Longrightarrow> f x = g y"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   262
apply (erule subst)+
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   263
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   264
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   265
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   266
ML \<open>fun cong_tac ctxt = Cong_Tac.cong_tac ctxt @{thm cong}\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   267
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
   268
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   269
subsubsection \<open>Equality of booleans -- iff\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   270
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   271
lemma iffI: assumes "P \<Longrightarrow> Q" and "Q \<Longrightarrow> P" shows "P = Q"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   272
  by (iprover intro: iff [THEN mp, THEN mp] impI assms)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   273
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   274
lemma iffD2: "\<lbrakk>P = Q; Q\<rbrakk> \<Longrightarrow> P"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   275
  by (erule ssubst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   276
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   277
lemma rev_iffD2: "\<lbrakk>Q; P = Q\<rbrakk> \<Longrightarrow> P"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   278
  by (erule iffD2)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   279
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   280
lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   281
  by (drule sym) (rule iffD2)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   282
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   283
lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   284
  by (drule sym) (rule rev_iffD2)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   285
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   286
lemma iffE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   287
  assumes major: "P = Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   288
    and minor: "\<lbrakk>P \<longrightarrow> Q; Q \<longrightarrow> P\<rbrakk> \<Longrightarrow> R"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   289
  shows R
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   290
  by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   291
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   292
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   293
subsubsection \<open>True\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   294
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   295
lemma TrueI: "True"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   296
  unfolding True_def by (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   297
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   298
lemma eqTrueI: "P \<Longrightarrow> P = True"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   299
  by (iprover intro: iffI TrueI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   300
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   301
lemma eqTrueE: "P = True \<Longrightarrow> P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   302
  by (erule iffD2) (rule TrueI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   303
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   304
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   305
subsubsection \<open>Universal quantifier\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   306
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   307
lemma allI: assumes "\<And>x::'a. P x" shows "\<forall>x. P x"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   308
  unfolding All_def by (iprover intro: ext eqTrueI assms)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   309
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   310
lemma spec: "\<forall>x::'a. P x \<Longrightarrow> P x"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   311
apply (unfold All_def)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   312
apply (rule eqTrueE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   313
apply (erule fun_cong)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   314
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   315
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   316
lemma allE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   317
  assumes major: "\<forall>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   318
    and minor: "P x \<Longrightarrow> R"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   319
  shows R
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   320
  by (iprover intro: minor major [THEN spec])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   321
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   322
lemma all_dupE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   323
  assumes major: "\<forall>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   324
    and minor: "\<lbrakk>P x; \<forall>x. P x\<rbrakk> \<Longrightarrow> R"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   325
  shows R
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   326
  by (iprover intro: minor major major [THEN spec])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   327
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   328
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   329
subsubsection \<open>False\<close>
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   330
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   331
text \<open>
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   332
  Depends upon @{text spec}; it is impossible to do propositional
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   333
  logic before quantifiers!
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   334
\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   335
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   336
lemma FalseE: "False \<Longrightarrow> P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   337
  apply (unfold False_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   338
  apply (erule spec)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   339
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   340
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   341
lemma False_neq_True: "False = True \<Longrightarrow> P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   342
  by (erule eqTrueE [THEN FalseE])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   343
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   344
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   345
subsubsection \<open>Negation\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   346
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   347
lemma notI:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   348
  assumes "P \<Longrightarrow> False"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   349
  shows "\<not> P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   350
  apply (unfold not_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   351
  apply (iprover intro: impI assms)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   352
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   353
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   354
lemma False_not_True: "False \<noteq> True"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   355
  apply (rule notI)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   356
  apply (erule False_neq_True)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   357
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   358
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   359
lemma True_not_False: "True \<noteq> False"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   360
  apply (rule notI)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   361
  apply (drule sym)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   362
  apply (erule False_neq_True)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   363
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   364
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   365
lemma notE: "\<lbrakk>\<not> P; P\<rbrakk> \<Longrightarrow> R"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   366
  apply (unfold not_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   367
  apply (erule mp [THEN FalseE])
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   368
  apply assumption
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   369
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   370
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   371
lemma notI2: "(P \<Longrightarrow> \<not> Pa) \<Longrightarrow> (P \<Longrightarrow> Pa) \<Longrightarrow> \<not> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   372
  by (erule notE [THEN notI]) (erule meta_mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   373
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   374
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   375
subsubsection \<open>Implication\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   376
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   377
lemma impE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   378
  assumes "P \<longrightarrow> Q" P "Q \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   379
  shows R
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   380
by (iprover intro: assms mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   381
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   382
(* Reduces Q to P \<longrightarrow> Q, allowing substitution in P. *)
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   383
lemma rev_mp: "\<lbrakk>P; P \<longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   384
by (iprover intro: mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   385
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   386
lemma contrapos_nn:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   387
  assumes major: "\<not> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   388
      and minor: "P \<Longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   389
  shows "\<not> P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   390
by (iprover intro: notI minor major [THEN notE])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   391
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   392
(*not used at all, but we already have the other 3 combinations *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   393
lemma contrapos_pn:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   394
  assumes major: "Q"
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   395
      and minor: "P \<Longrightarrow> \<not> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   396
  shows "\<not> P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   397
by (iprover intro: notI minor major notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   398
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   399
lemma not_sym: "t \<noteq> s \<Longrightarrow> s \<noteq> t"
21250
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   400
  by (erule contrapos_nn) (erule sym)
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   401
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   402
lemma eq_neq_eq_imp_neq: "\<lbrakk>x = a; a \<noteq> b; b = y\<rbrakk> \<Longrightarrow> x \<noteq> y"
21250
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   403
  by (erule subst, erule ssubst, assumption)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   404
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   405
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   406
subsubsection \<open>Existential quantifier\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   407
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   408
lemma exI: "P x \<Longrightarrow> \<exists>x::'a. P x"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   409
apply (unfold Ex_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   410
apply (iprover intro: allI allE impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   411
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   412
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   413
lemma exE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   414
  assumes major: "\<exists>x::'a. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   415
      and minor: "\<And>x. P x \<Longrightarrow> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   416
  shows "Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   417
apply (rule major [unfolded Ex_def, THEN spec, THEN mp])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   418
apply (iprover intro: impI [THEN allI] minor)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   419
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   420
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   421
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   422
subsubsection \<open>Conjunction\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   423
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   424
lemma conjI: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> P \<and> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   425
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   426
apply (iprover intro: impI [THEN allI] mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   427
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   428
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   429
lemma conjunct1: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> P"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   430
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   431
apply (iprover intro: impI dest: spec mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   432
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   433
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   434
lemma conjunct2: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   435
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   436
apply (iprover intro: impI dest: spec mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   437
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   438
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   439
lemma conjE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   440
  assumes major: "P \<and> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   441
      and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   442
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   443
apply (rule minor)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   444
apply (rule major [THEN conjunct1])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   445
apply (rule major [THEN conjunct2])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   446
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   447
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   448
lemma context_conjI:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   449
  assumes P "P \<Longrightarrow> Q" shows "P \<and> Q"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   450
by (iprover intro: conjI assms)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   451
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   452
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   453
subsubsection \<open>Disjunction\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   454
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   455
lemma disjI1: "P \<Longrightarrow> P \<or> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   456
apply (unfold or_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   457
apply (iprover intro: allI impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   458
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   459
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   460
lemma disjI2: "Q \<Longrightarrow> P \<or> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   461
apply (unfold or_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   462
apply (iprover intro: allI impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   463
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   464
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   465
lemma disjE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   466
  assumes major: "P \<or> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   467
      and minorP: "P \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   468
      and minorQ: "Q \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   469
  shows R
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   470
by (iprover intro: minorP minorQ impI
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   471
                 major [unfolded or_def, THEN spec, THEN mp, THEN mp])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   472
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   473
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   474
subsubsection \<open>Classical logic\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   475
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   476
lemma classical:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   477
  assumes prem: "\<not> P \<Longrightarrow> P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   478
  shows P
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   479
apply (rule True_or_False [THEN disjE, THEN eqTrueE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   480
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   481
apply (rule notI [THEN prem, THEN eqTrueI])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   482
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   483
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   484
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   485
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45294
diff changeset
   486
lemmas ccontr = FalseE [THEN classical]
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   487
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   488
(*notE with premises exchanged; it discharges \<not> R so that it can be used to
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   489
  make elimination rules*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   490
lemma rev_notE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   491
  assumes premp: P
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   492
      and premnot: "\<not> R \<Longrightarrow> \<not> P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   493
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   494
apply (rule ccontr)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   495
apply (erule notE [OF premnot premp])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   496
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   497
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   498
(*Double negation law*)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   499
lemma notnotD: "\<not>\<not> P \<Longrightarrow> P"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   500
apply (rule classical)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   501
apply (erule notE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   502
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   503
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   504
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   505
lemma contrapos_pp:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   506
  assumes p1: Q
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   507
      and p2: "\<not> P \<Longrightarrow> \<not> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   508
  shows P
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   509
by (iprover intro: classical p1 p2 notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   510
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   511
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   512
subsubsection \<open>Unique existence\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   513
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   514
lemma ex1I:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   515
  assumes "P a" "\<And>x. P x \<Longrightarrow> x = a"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   516
  shows "\<exists>!x. P x"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   517
by (unfold Ex1_def, iprover intro: assms exI conjI allI impI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   518
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   519
text\<open>Sometimes easier to use: the premises have no shared variables.  Safe!\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   520
lemma ex_ex1I:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   521
  assumes ex_prem: "\<exists>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   522
      and eq: "\<And>x y. \<lbrakk>P x; P y\<rbrakk> \<Longrightarrow> x = y"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   523
  shows "\<exists>!x. P x"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   524
by (iprover intro: ex_prem [THEN exE] ex1I eq)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   525
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   526
lemma ex1E:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   527
  assumes major: "\<exists>!x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   528
      and minor: "\<And>x. \<lbrakk>P x; \<forall>y. P y \<longrightarrow> y = x\<rbrakk> \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   529
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   530
apply (rule major [unfolded Ex1_def, THEN exE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   531
apply (erule conjE)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   532
apply (iprover intro: minor)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   533
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   534
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   535
lemma ex1_implies_ex: "\<exists>!x. P x \<Longrightarrow> \<exists>x. P x"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   536
apply (erule ex1E)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   537
apply (rule exI)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   538
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   539
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   540
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   541
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   542
subsubsection \<open>Classical intro rules for disjunction and existential quantifiers\<close>
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   543
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   544
lemma disjCI:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   545
  assumes "\<not> Q \<Longrightarrow> P" shows "P \<or> Q"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   546
apply (rule classical)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   547
apply (iprover intro: assms disjI1 disjI2 notI elim: notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   548
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   549
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   550
lemma excluded_middle: "\<not> P \<or> P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   551
by (iprover intro: disjCI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   552
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   553
text \<open>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   554
  case distinction as a natural deduction rule.
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   555
  Note that @{term "\<not> P"} is the second case, not the first
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   556
\<close>
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
   557
lemma case_split [case_names True False]:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   558
  assumes prem1: "P \<Longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   559
      and prem2: "\<not> P \<Longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   560
  shows Q
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   561
apply (rule excluded_middle [THEN disjE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   562
apply (erule prem2)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   563
apply (erule prem1)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   564
done
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
   565
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   566
(*Classical implies (\<longrightarrow>) elimination. *)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   567
lemma impCE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   568
  assumes major: "P \<longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   569
      and minor: "\<not> P \<Longrightarrow> R" "Q \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   570
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   571
apply (rule excluded_middle [of P, THEN disjE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   572
apply (iprover intro: minor major [THEN mp])+
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   573
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   574
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   575
(*This version of \<longrightarrow> elimination works on Q before P.  It works best for
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   576
  those cases in which P holds "almost everywhere".  Can't install as
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   577
  default: would break old proofs.*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   578
lemma impCE':
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   579
  assumes major: "P \<longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   580
      and minor: "Q \<Longrightarrow> R" "\<not> P \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   581
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   582
apply (rule excluded_middle [of P, THEN disjE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   583
apply (iprover intro: minor major [THEN mp])+
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   584
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   585
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   586
(*Classical <-> elimination. *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   587
lemma iffCE:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   588
  assumes major: "P = Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   589
      and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R" "\<lbrakk>\<not> P; \<not> Q\<rbrakk> \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   590
  shows R
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   591
apply (rule major [THEN iffE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   592
apply (iprover intro: minor elim: impCE notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   593
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   594
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   595
lemma exCI:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   596
  assumes "\<forall>x. \<not> P x \<Longrightarrow> P a"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   597
  shows "\<exists>x. P x"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   598
apply (rule ccontr)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   599
apply (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   600
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   601
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   602
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   603
subsubsection \<open>Intuitionistic Reasoning\<close>
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   604
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   605
lemma impE':
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   606
  assumes 1: "P \<longrightarrow> Q"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   607
    and 2: "Q \<Longrightarrow> R"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   608
    and 3: "P \<longrightarrow> Q \<Longrightarrow> P"
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   609
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   610
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   611
  from 3 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   612
  with 1 have Q by (rule impE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   613
  with 2 show R .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   614
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   615
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   616
lemma allE':
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   617
  assumes 1: "\<forall>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   618
    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
   619
  shows Q
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   620
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   621
  from 1 have "P x" by (rule spec)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   622
  from this and 1 show Q by (rule 2)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   623
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   624
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   625
lemma notE':
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   626
  assumes 1: "\<not> P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   627
    and 2: "\<not> P \<Longrightarrow> P"
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   628
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   629
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   630
  from 2 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   631
  with 1 show R by (rule notE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   632
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   633
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   634
lemma TrueE: "True \<Longrightarrow> P \<Longrightarrow> P" .
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   635
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
   636
22467
c9357ef01168 TrueElim and notTrueElim tested and added as safe elim rules.
dixon
parents: 22445
diff changeset
   637
lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   638
  and [Pure.intro!] = iffI conjI impI TrueI notI allI refl
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   639
  and [Pure.elim 2] = allE notE' impE'
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   640
  and [Pure.intro] = exI disjI2 disjI1
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   641
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   642
lemmas [trans] = trans
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   643
  and [sym] = sym not_sym
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   644
  and [Pure.elim?] = iffD1 iffD2 impE
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   645
11438
3d9222b80989 declare trans [trans] (*overridden in theory Calculation*);
wenzelm
parents: 11432
diff changeset
   646
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   647
subsubsection \<open>Atomizing meta-level connectives\<close>
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   648
28513
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   649
axiomatization where
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   650
  eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" (*admissible axiom*)
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   651
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   652
lemma atomize_all [atomize]: "(\<And>x. P x) \<equiv> Trueprop (\<forall>x. P x)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   653
proof
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   654
  assume "\<And>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   655
  then show "\<forall>x. P x" ..
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   656
next
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   657
  assume "\<forall>x. P x"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   658
  then show "\<And>x. P x" by (rule allE)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   659
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   660
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   661
lemma atomize_imp [atomize]: "(A \<Longrightarrow> B) \<equiv> Trueprop (A \<longrightarrow> B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   662
proof
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   663
  assume r: "A \<Longrightarrow> B"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   664
  show "A \<longrightarrow> B" by (rule impI) (rule r)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   665
next
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   666
  assume "A \<longrightarrow> B" and A
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   667
  then show B by (rule mp)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   668
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   669
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   670
lemma atomize_not: "(A \<Longrightarrow> False) \<equiv> Trueprop (\<not> A)"
14749
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   671
proof
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   672
  assume r: "A \<Longrightarrow> False"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   673
  show "\<not> A" by (rule notI) (rule r)
14749
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   674
next
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   675
  assume "\<not> A" and A
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   676
  then show False by (rule notE)
14749
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   677
qed
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   678
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   679
lemma atomize_eq [atomize, code]: "(x \<equiv> y) \<equiv> Trueprop (x = y)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   680
proof
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   681
  assume "x \<equiv> y"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   682
  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
   683
next
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   684
  assume "x = y"
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   685
  then show "x \<equiv> y" by (rule eq_reflection)
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   686
qed
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   687
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   688
lemma atomize_conj [atomize]: "(A &&& B) \<equiv> Trueprop (A \<and> B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   689
proof
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28741
diff changeset
   690
  assume conj: "A &&& B"
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   691
  show "A \<and> B"
19121
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   692
  proof (rule conjI)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   693
    from conj show A by (rule conjunctionD1)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   694
    from conj show B by (rule conjunctionD2)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   695
  qed
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   696
next
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   697
  assume conj: "A \<and> B"
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28741
diff changeset
   698
  show "A &&& B"
19121
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   699
  proof -
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   700
    from conj show A ..
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   701
    from conj show B ..
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   702
  qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   703
qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   704
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   705
lemmas [symmetric, rulify] = atomize_all atomize_imp
18832
6ab4de872a70 declare 'defn' rules;
wenzelm
parents: 18757
diff changeset
   706
  and [symmetric, defn] = atomize_all atomize_imp atomize_eq
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   707
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   708
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   709
subsubsection \<open>Atomizing elimination rules\<close>
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   710
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   711
lemma atomize_exL[atomize_elim]: "(\<And>x. P x \<Longrightarrow> Q) \<equiv> ((\<exists>x. P x) \<Longrightarrow> Q)"
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   712
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   713
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   714
lemma atomize_conjL[atomize_elim]: "(A \<Longrightarrow> B \<Longrightarrow> C) \<equiv> (A \<and> B \<Longrightarrow> C)"
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   715
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   716
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   717
lemma atomize_disjL[atomize_elim]: "((A \<Longrightarrow> C) \<Longrightarrow> (B \<Longrightarrow> C) \<Longrightarrow> C) \<equiv> ((A \<or> B \<Longrightarrow> C) \<Longrightarrow> C)"
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   718
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   719
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   720
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
   721
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   722
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   723
subsection \<open>Package setup\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   724
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51304
diff changeset
   725
ML_file "Tools/hologic.ML"
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51304
diff changeset
   726
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51304
diff changeset
   727
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   728
subsubsection \<open>Sledgehammer setup\<close>
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   729
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   730
text \<open>
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   731
Theorems blacklisted to Sledgehammer. These theorems typically produce clauses
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   732
that are prolific (match too many equality or membership literals) and relate to
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   733
seldom-used facts. Some duplicate other rules.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   734
\<close>
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   735
57963
cb67fac9bd89 updated to named_theorems;
wenzelm
parents: 57962
diff changeset
   736
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
   737
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
   738
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   739
subsubsection \<open>Classical Reasoner setup\<close>
9529
d9434a9277a4 lemmas atomize = all_eq imp_eq;
wenzelm
parents: 9488
diff changeset
   740
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   741
lemma imp_elim: "P \<longrightarrow> Q \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> (Q \<Longrightarrow> R) \<Longrightarrow> R"
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   742
  by (rule classical) iprover
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   743
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   744
lemma swap: "\<not> P \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> R"
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   745
  by (rule classical) iprover
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   746
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   747
lemma thin_refl: "\<And>X. \<lbrakk>x = x; PROP W\<rbrakk> \<Longrightarrow> PROP W" .
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   748
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   749
ML \<open>
42799
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   750
structure Hypsubst = Hypsubst
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   751
(
21218
38013c3a77a2 tuned hypsubst setup;
wenzelm
parents: 21210
diff changeset
   752
  val dest_eq = HOLogic.dest_eq
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   753
  val dest_Trueprop = HOLogic.dest_Trueprop
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   754
  val dest_imp = HOLogic.dest_imp
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   755
  val eq_reflection = @{thm eq_reflection}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   756
  val rev_eq_reflection = @{thm meta_eq_to_obj_eq}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   757
  val imp_intr = @{thm impI}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   758
  val rev_mp = @{thm rev_mp}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   759
  val subst = @{thm subst}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   760
  val sym = @{thm sym}
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   761
  val thin_refl = @{thm thin_refl};
42799
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   762
);
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
   763
open Hypsubst;
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   764
42799
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   765
structure Classical = Classical
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   766
(
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   767
  val imp_elim = @{thm imp_elim}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   768
  val not_elim = @{thm notE}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   769
  val swap = @{thm swap}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   770
  val classical = @{thm classical}
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   771
  val sizef = Drule.size_of_thm
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   772
  val hyp_subst_tacs = [Hypsubst.hyp_subst_tac]
42799
4e33894aec6d modernized functor names;
wenzelm
parents: 42795
diff changeset
   773
);
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   774
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   775
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
   776
open Basic_Classical;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   777
\<close>
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   778
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   779
setup \<open>
35389
2be5440f7271 tuned hyp_subst_tac';
wenzelm
parents: 35364
diff changeset
   780
  (*prevent substitution on bool*)
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   781
  let
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   782
    fun non_bool_eq (@{const_name HOL.eq}, Type (_, [T, _])) = T <> @{typ bool}
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   783
      | non_bool_eq _ = false;
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   784
    fun hyp_subst_tac' ctxt =
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   785
      SUBGOAL (fn (goal, i) =>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   786
        if Term.exists_Const non_bool_eq goal
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   787
        then Hypsubst.hyp_subst_tac ctxt i
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   788
        else no_tac);
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   789
  in
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   790
    Context_Rules.addSWrapper (fn ctxt => fn tac => hyp_subst_tac' ctxt ORELSE' tac)
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
   791
  end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   792
\<close>
21009
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   793
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   794
declare iffI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   795
  and notI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   796
  and impI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   797
  and disjCI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   798
  and conjI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   799
  and TrueI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   800
  and refl [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   801
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   802
declare iffCE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   803
  and FalseE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   804
  and impCE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   805
  and disjE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   806
  and conjE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   807
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   808
declare ex_ex1I [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   809
  and allI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   810
  and exI [intro]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   811
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   812
declare exE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   813
  allE [elim]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   814
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   815
ML \<open>val HOL_cs = claset_of @{context}\<close>
19162
67436e2a16df Added setup for "atpset" (a rule set for ATPs).
mengj
parents: 19138
diff changeset
   816
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   817
lemma contrapos_np: "\<not> Q \<Longrightarrow> (\<not> P \<Longrightarrow> Q) \<Longrightarrow> P"
20223
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   818
  apply (erule swap)
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   819
  apply (erule (1) meta_mp)
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   820
  done
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   821
18689
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   822
declare ex_ex1I [rule del, intro! 2]
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   823
  and ex1I [intro]
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   824
41865
4e8483cc2cc5 declare ext [intro]: Extensionality now available by default
paulson
parents: 41827
diff changeset
   825
declare ext [intro]
4e8483cc2cc5 declare ext [intro]: Extensionality now available by default
paulson
parents: 41827
diff changeset
   826
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   827
lemmas [intro?] = ext
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   828
  and [elim?] = ex1_implies_ex
11977
2e7c54b86763 tuned declaration of rules;
wenzelm
parents: 11953
diff changeset
   829
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   830
(*Better then ex1E for classical reasoner: needs no quantifier duplication!*)
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
   831
lemma alt_ex1E [elim!]:
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   832
  assumes major: "\<exists>!x. P x"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   833
      and prem: "\<And>x. \<lbrakk> P x; \<forall>y y'. P y \<and> P y' \<longrightarrow> y = y' \<rbrakk> \<Longrightarrow> R"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   834
  shows R
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   835
apply (rule ex1E [OF major])
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   836
apply (rule prem)
59499
14095f771781 misc tuning;
wenzelm
parents: 59498
diff changeset
   837
apply assumption
14095f771781 misc tuning;
wenzelm
parents: 59498
diff changeset
   838
apply (rule allI)+
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   839
apply (tactic \<open>eresolve_tac @{context} [Classical.dup_elim @{context} @{thm allE}] 1\<close>)
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   840
apply iprover
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   841
done
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   842
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   843
ML \<open>
42477
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   844
  structure Blast = Blast
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   845
  (
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   846
    structure Classical = Classical
42802
51d7e74f6899 simplified BLAST_DATA;
wenzelm
parents: 42799
diff changeset
   847
    val Trueprop_const = dest_Const @{const Trueprop}
42477
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   848
    val equality_name = @{const_name HOL.eq}
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   849
    val not_name = @{const_name Not}
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   850
    val notE = @{thm notE}
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   851
    val ccontr = @{thm ccontr}
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   852
    val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   853
  );
52fa26b6c524 simplified Blast setup;
wenzelm
parents: 42459
diff changeset
   854
  val blast_tac = Blast.blast_tac;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   855
\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   856
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   857
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   858
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
   859
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   860
lemma the_equality [intro]:
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   861
  assumes "P a"
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   862
      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
   863
  shows "(THE x. P x) = a"
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   864
  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
   865
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   866
lemma theI:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   867
  assumes "P a" 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
   868
  shows "P (THE x. P x)"
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   869
by (iprover intro: assms the_equality [THEN ssubst])
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   870
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   871
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
   872
  by (blast intro: theI)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   873
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   874
(*Easier to apply than theI: only one occurrence of P*)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   875
lemma theI2:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   876
  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
   877
  shows "Q (THE x. P x)"
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   878
by (iprover intro: assms theI)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   879
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   880
lemma the1I2: assumes "\<exists>!x. P x" "\<And>x. P x \<Longrightarrow> Q x" shows "Q (THE x. P x)"
59504
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   881
by(iprover intro:assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)]
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   882
           elim:allE impE)
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   883
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   884
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
   885
  by blast
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   886
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   887
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
   888
  by blast
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   889
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
   890
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   891
subsubsection \<open>Simplifier\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   892
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   893
lemma eta_contract_eq: "(\<lambda>s. f s) = f" ..
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   894
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   895
lemma simp_thms:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   896
  shows not_not: "(\<not> \<not> P) = P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   897
  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
   898
  and
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   899
    "(P \<noteq> Q) = (P = (\<not> Q))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   900
    "(P \<or> \<not>P) = True"    "(\<not> P \<or> P) = True"
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   901
    "(x = x) = True"
32068
98acc234d683 tuned code annotations
haftmann
parents: 31998
diff changeset
   902
  and not_True_eq_False [code]: "(\<not> True) = False"
98acc234d683 tuned code annotations
haftmann
parents: 31998
diff changeset
   903
  and not_False_eq_True [code]: "(\<not> False) = True"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   904
  and
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   905
    "(\<not> P) \<noteq> P"  "P \<noteq> (\<not> P)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   906
    "(True = P) = P"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   907
  and eq_True: "(P = True) = P"
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   908
  and "(False = P) = (\<not> P)"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   909
  and eq_False: "(P = False) = (\<not> P)"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   910
  and
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   911
    "(True \<longrightarrow> P) = P"  "(False \<longrightarrow> P) = True"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   912
    "(P \<longrightarrow> True) = True"  "(P \<longrightarrow> P) = True"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   913
    "(P \<longrightarrow> False) = (\<not> P)"  "(P \<longrightarrow> \<not> P) = (\<not> P)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   914
    "(P \<and> True) = P"  "(True \<and> P) = P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   915
    "(P \<and> False) = False"  "(False \<and> P) = False"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   916
    "(P \<and> P) = P"  "(P \<and> (P \<and> Q)) = (P \<and> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   917
    "(P \<and> \<not> P) = False"    "(\<not> P \<and> P) = False"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   918
    "(P \<or> True) = True"  "(True \<or> P) = True"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   919
    "(P \<or> False) = P"  "(False \<or> P) = P"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   920
    "(P \<or> P) = P"  "(P \<or> (P \<or> Q)) = (P \<or> Q)" and
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   921
    "(\<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
   922
  and
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   923
    "\<And>P. (\<exists>x. x = t \<and> P x) = P t"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   924
    "\<And>P. (\<exists>x. t = x \<and> P x) = P t"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   925
    "\<And>P. (\<forall>x. x = t \<longrightarrow> P x) = P t"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   926
    "\<And>P. (\<forall>x. t = x \<longrightarrow> P x) = P t"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   927
  by (blast, blast, blast, blast, blast, iprover+)
13421
8fcdf4a26468 simplified locale predicates;
wenzelm
parents: 13412
diff changeset
   928
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   929
lemma disj_absorb: "(A \<or> A) = A"
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   930
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   931
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   932
lemma disj_left_absorb: "(A \<or> (A \<or> B)) = (A \<or> B)"
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   933
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   934
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   935
lemma conj_absorb: "(A \<and> A) = A"
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   936
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   937
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   938
lemma conj_left_absorb: "(A \<and> (A \<and> B)) = (A \<and> B)"
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   939
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   940
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   941
lemma eq_ac:
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56941
diff changeset
   942
  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
   943
    and iff_left_commute: "(P \<longleftrightarrow> (Q \<longleftrightarrow> R)) \<longleftrightarrow> (Q \<longleftrightarrow> (P \<longleftrightarrow> R))"
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56941
diff changeset
   944
    and iff_assoc: "((P \<longleftrightarrow> Q) \<longleftrightarrow> R) \<longleftrightarrow> (P \<longleftrightarrow> (Q \<longleftrightarrow> R))" by (iprover, blast+)
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56941
diff changeset
   945
lemma neq_commute: "a \<noteq> b \<longleftrightarrow> b \<noteq> a" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   946
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   947
lemma conj_comms:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   948
  shows conj_commute: "(P \<and> Q) = (Q \<and> P)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   949
    and conj_left_commute: "(P \<and> (Q \<and> R)) = (Q \<and> (P \<and> R))" by iprover+
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   950
lemma conj_assoc: "((P \<and> Q) \<and> R) = (P \<and> (Q \<and> R))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   951
19174
df9de25e87b3 moved the "use" directive
paulson
parents: 19162
diff changeset
   952
lemmas conj_ac = conj_commute conj_left_commute conj_assoc
df9de25e87b3 moved the "use" directive
paulson
parents: 19162
diff changeset
   953
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   954
lemma disj_comms:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   955
  shows disj_commute: "(P \<or> Q) = (Q \<or> P)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   956
    and disj_left_commute: "(P \<or> (Q \<or> R)) = (Q \<or> (P \<or> R))" by iprover+
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   957
lemma disj_assoc: "((P \<or> Q) \<or> R) = (P \<or> (Q \<or> R))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   958
19174
df9de25e87b3 moved the "use" directive
paulson
parents: 19162
diff changeset
   959
lemmas disj_ac = disj_commute disj_left_commute disj_assoc
df9de25e87b3 moved the "use" directive
paulson
parents: 19162
diff changeset
   960
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   961
lemma conj_disj_distribL: "(P \<and> (Q \<or> R)) = (P \<and> Q \<or> P \<and> R)" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   962
lemma conj_disj_distribR: "((P \<or> Q) \<and> R) = (P \<and> R \<or> Q \<and> R)" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   963
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   964
lemma disj_conj_distribL: "(P \<or> (Q \<and> R)) = ((P \<or> Q) \<and> (P \<or> R))" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   965
lemma disj_conj_distribR: "((P \<and> Q) \<or> R) = ((P \<or> R) \<and> (Q \<or> R))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   966
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   967
lemma imp_conjR: "(P \<longrightarrow> (Q \<and> R)) = ((P \<longrightarrow> Q) \<and> (P \<longrightarrow> R))" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   968
lemma imp_conjL: "((P \<and> Q) \<longrightarrow> R) = (P \<longrightarrow> (Q \<longrightarrow> R))" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   969
lemma imp_disjL: "((P \<or> Q) \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   970
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   971
text \<open>These two are specialized, but @{text imp_disj_not1} is useful in @{text "Auth/Yahalom"}.\<close>
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   972
lemma imp_disj_not1: "(P \<longrightarrow> Q \<or> R) = (\<not> Q \<longrightarrow> P \<longrightarrow> R)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   973
lemma imp_disj_not2: "(P \<longrightarrow> Q \<or> R) = (\<not> R \<longrightarrow> P \<longrightarrow> Q)" by blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   974
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   975
lemma imp_disj1: "((P \<longrightarrow> Q) \<or> R) = (P \<longrightarrow> Q \<or> R)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   976
lemma imp_disj2: "(Q \<or> (P \<longrightarrow> R)) = (P \<longrightarrow> Q \<or> R)" by blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   977
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   978
lemma imp_cong: "(P = P') \<Longrightarrow> (P' \<Longrightarrow> (Q = Q')) \<Longrightarrow> ((P \<longrightarrow> Q) = (P' \<longrightarrow> Q'))"
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   979
  by iprover
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   980
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   981
lemma de_Morgan_disj: "(\<not> (P \<or> Q)) = (\<not> P \<and> \<not> Q)" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   982
lemma de_Morgan_conj: "(\<not> (P \<and> Q)) = (\<not> P \<or> \<not> Q)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   983
lemma not_imp: "(\<not> (P \<longrightarrow> Q)) = (P \<and> \<not> Q)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   984
lemma not_iff: "(P \<noteq> Q) = (P = (\<not> Q))" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   985
lemma disj_not1: "(\<not> P \<or> Q) = (P \<longrightarrow> Q)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   986
lemma disj_not2: "(P \<or> \<not> Q) = (Q \<longrightarrow> P)"  -- \<open>changes orientation :-(\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   987
  by blast
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   988
lemma imp_conv_disj: "(P \<longrightarrow> Q) = ((\<not> P) \<or> Q)" by blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   989
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   990
lemma iff_conv_conj_imp: "(P = Q) = ((P \<longrightarrow> Q) \<and> (Q \<longrightarrow> P))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   991
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   992
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   993
lemma cases_simp: "((P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> Q)) = Q"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   994
  -- \<open>Avoids duplication of subgoals after @{text split_if}, when the true and false\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
   995
  -- \<open>cases boil down to the same thing.\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   996
  by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   997
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   998
lemma not_all: "(\<not> (\<forall>x. P x)) = (\<exists>x. \<not> P x)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
   999
lemma imp_all: "((\<forall>x. P x) \<longrightarrow> Q) = (\<exists>x. P x \<longrightarrow> Q)" by blast
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1000
lemma not_ex: "(\<not> (\<exists>x. P x)) = (\<forall>x. \<not> P x)" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1001
lemma imp_ex: "((\<exists>x. P x) \<longrightarrow> Q) = (\<forall>x. P x \<longrightarrow> Q)" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1002
lemma all_not_ex: "(\<forall>x. P x) = (\<not> (\<exists>x. \<not> P x ))" by blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1003
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
  1004
declare All_def [no_atp]
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1005
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1006
lemma ex_disj_distrib: "(\<exists>x. P x \<or> Q x) = ((\<exists>x. P x) \<or> (\<exists>x. Q x))" by iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1007
lemma all_conj_distrib: "(\<forall>x. P x \<and> Q x) = ((\<forall>x. P x) \<and> (\<forall>x. Q x))" by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1008
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1009
text \<open>
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1010
  \medskip The @{text "\<and>"} congruence rule: not included by default!
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1011
  May slow rewrite proofs down by as much as 50\%\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1012
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1013
lemma conj_cong:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1014
    "(P = P') \<Longrightarrow> (P' \<Longrightarrow> (Q = Q')) \<Longrightarrow> ((P \<and> Q) = (P' \<and> Q'))"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
  1015
  by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1016
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1017
lemma rev_conj_cong:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1018
    "(Q = Q') \<Longrightarrow> (Q' \<Longrightarrow> (P = P')) \<Longrightarrow> ((P \<and> Q) = (P' \<and> Q'))"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
  1019
  by iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1020
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1021
text \<open>The @{text "|"} congruence rule: not included by default!\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1022
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1023
lemma disj_cong:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1024
    "(P = P') \<Longrightarrow> (\<not> P' \<Longrightarrow> (Q = Q')) \<Longrightarrow> ((P \<or> Q) = (P' \<or> Q'))"
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1025
  by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1026
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1027
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1028
text \<open>\medskip if-then-else rules\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1029
32068
98acc234d683 tuned code annotations
haftmann
parents: 31998
diff changeset
  1030
lemma if_True [code]: "(if True then x else y) = x"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
  1031
  by (unfold If_def) blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1032
32068
98acc234d683 tuned code annotations
haftmann
parents: 31998
diff changeset
  1033
lemma if_False [code]: "(if False then x else y) = y"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
  1034
  by (unfold If_def) blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1035
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1036
lemma if_P: "P \<Longrightarrow> (if P then x else y) = x"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
  1037
  by (unfold If_def) blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1038
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1039
lemma if_not_P: "\<not> P \<Longrightarrow> (if P then x else y) = y"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
  1040
  by (unfold If_def) blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1041
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1042
lemma split_if: "P (if Q then x else y) = ((Q \<longrightarrow> P x) \<and> (\<not> Q \<longrightarrow> P y))"
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1043
  apply (rule case_split [of Q])
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1044
   apply (simplesubst if_P)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1045
    prefer 3 apply (simplesubst if_not_P, blast+)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1046
  done
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1047
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1048
lemma split_if_asm: "P (if Q then x else y) = (\<not> ((Q \<and> \<not> P x) \<or> (\<not> Q \<and> \<not> P y)))"
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1049
by (simplesubst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1050
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35808
diff changeset
  1051
lemmas if_splits [no_atp] = split_if split_if_asm
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1052
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1053
lemma if_cancel: "(if c then x else x) = x"
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1054
by (simplesubst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1055
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1056
lemma if_eq_cancel: "(if x = y then y else x) = x"
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1057
by (simplesubst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1058
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1059
lemma if_bool_eq_conj: "(if P then Q else R) = ((P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> R))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1060
  -- \<open>This form is useful for expanding @{text "if"}s on the RIGHT of the @{text "\<Longrightarrow>"} symbol.\<close>
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1061
  by (rule split_if)
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1062
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1063
lemma if_bool_eq_disj: "(if P then Q else R) = ((P \<and> Q) \<or> (\<not> P \<and> R))"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1064
  -- \<open>And this form is useful for expanding @{text "if"}s on the LEFT.\<close>
59504
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59028
diff changeset
  1065
  by (simplesubst split_if) blast
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1066
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1067
lemma Eq_TrueI: "P \<Longrightarrow> P \<equiv> True" by (unfold atomize_eq) iprover
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1068
lemma Eq_FalseI: "\<not> P \<Longrightarrow> P \<equiv> False" by (unfold atomize_eq) iprover
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
  1069
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1070
text \<open>\medskip let rules for simproc\<close>
15423
761a4f8e6ad6 added simproc for Let
schirmer
parents: 15411
diff changeset
  1071
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1072
lemma Let_folded: "f x \<equiv> g x \<Longrightarrow> Let x f \<equiv> Let x g"
15423
761a4f8e6ad6 added simproc for Let
schirmer
parents: 15411
diff changeset
  1073
  by (unfold Let_def)
761a4f8e6ad6 added simproc for Let
schirmer
parents: 15411
diff changeset
  1074
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1075
lemma Let_unfold: "f x \<equiv> g \<Longrightarrow> Let x f \<equiv> g"
15423
761a4f8e6ad6 added simproc for Let
schirmer
parents: 15411
diff changeset
  1076
  by (unfold Let_def)
761a4f8e6ad6 added simproc for Let
schirmer
parents: 15411
diff changeset
  1077
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1078
text \<open>
16999
307b2ec590ff Turned simp_implies into binary operator.
ballarin
parents: 16775
diff changeset
  1079
  The following copy of the implication operator is useful for
307b2ec590ff Turned simp_implies into binary operator.
ballarin
parents: 16775
diff changeset
  1080
  fine-tuning congruence rules.  It instructs the simplifier to simplify
307b2ec590ff Turned simp_implies into binary operator.
ballarin
parents: 16775
diff changeset
  1081
  its premise.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1082
\<close>
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1083
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1084
definition simp_implies :: "[prop, prop] \<Rightarrow> prop"  (infixr "=simp=>" 1) where
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1085
  "simp_implies \<equiv> op \<Longrightarrow>"
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1086
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1087
lemma simp_impliesI:
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1088
  assumes PQ: "(PROP P \<Longrightarrow> PROP Q)"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1089
  shows "PROP P =simp=> PROP Q"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1090
  apply (unfold simp_implies_def)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1091
  apply (rule PQ)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1092
  apply assumption
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1093
  done
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1094
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1095
lemma simp_impliesE:
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
  1096
  assumes PQ: "PROP P =simp=> PROP Q"
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1097
  and P: "PROP P"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1098
  and QR: "PROP Q \<Longrightarrow> PROP R"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1099
  shows "PROP R"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1100
  apply (rule QR)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1101
  apply (rule PQ [unfolded simp_implies_def])
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1102
  apply (rule P)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1103
  done
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1104
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1105
lemma simp_implies_cong:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1106
  assumes PP' :"PROP P \<equiv> PROP P'"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1107
  and P'QQ': "PROP P' \<Longrightarrow> (PROP Q \<equiv> PROP Q')"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1108
  shows "(PROP P =simp=> PROP Q) \<equiv> (PROP P' =simp=> PROP Q')"
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1109
proof (unfold simp_implies_def, rule equal_intr_rule)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1110
  assume PQ: "PROP P \<Longrightarrow> PROP Q"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1111
  and P': "PROP P'"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1112
  from PP' [symmetric] and P' have "PROP P"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1113
    by (rule equal_elim_rule1)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1114
  then have "PROP Q" by (rule PQ)
16633
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1115
  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
  1116
next
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1117
  assume P'Q': "PROP P' \<Longrightarrow> PROP Q'"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1118
  and P: "PROP P"
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1119
  from PP' and P have P': "PROP P'" by (rule equal_elim_rule1)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1120
  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
  1121
  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
  1122
    by (rule equal_elim_rule1)
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1123
qed
208ebc9311f2 Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents: 16587
diff changeset
  1124
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1125
lemma uncurry:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1126
  assumes "P \<longrightarrow> Q \<longrightarrow> R"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1127
  shows "P \<and> Q \<longrightarrow> R"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1128
  using assms by blast
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1129
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1130
lemma iff_allI:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1131
  assumes "\<And>x. P x = Q x"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1132
  shows "(\<forall>x. P x) = (\<forall>x. Q x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1133
  using assms by blast
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1134
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1135
lemma iff_exI:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1136
  assumes "\<And>x. P x = Q x"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1137
  shows "(\<exists>x. P x) = (\<exists>x. Q x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1138
  using assms by blast
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1139
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1140
lemma all_comm:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1141
  "(\<forall>x y. P x y) = (\<forall>y x. P x y)"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1142
  by blast
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1143
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1144
lemma ex_comm:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1145
  "(\<exists>x y. P x y) = (\<exists>y x. P x y)"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1146
  by blast
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1147
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
  1148
ML_file "Tools/simpdata.ML"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1149
ML \<open>open Simpdata\<close>
42455
6702c984bf5a modernized Quantifier1 simproc setup;
wenzelm
parents: 42453
diff changeset
  1150
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1151
setup \<open>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1152
  map_theory_simpset (put_simpset HOL_basic_ss) #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1153
  Simplifier.method_setup Splitter.split_modifiers
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1154
\<close>
42455
6702c984bf5a modernized Quantifier1 simproc setup;
wenzelm
parents: 42453
diff changeset
  1155
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1156
simproc_setup defined_Ex ("\<exists>x. P x") = \<open>fn _ => Quantifier1.rearrange_ex\<close>
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1157
simproc_setup defined_All ("\<forall>x. P x") = \<open>fn _ => Quantifier1.rearrange_all\<close>
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1158
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1159
text \<open>Simproc for proving @{text "(y = x) \<equiv> False"} from premise @{text "\<not> (x = y)"}:\<close>
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1160
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1161
simproc_setup neq ("x = y") = \<open>fn _ =>
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1162
let
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1163
  val neq_to_EQ_False = @{thm not_sym} RS @{thm Eq_FalseI};
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1164
  fun is_neq eq lhs rhs thm =
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1165
    (case Thm.prop_of thm of
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1166
      _ $ (Not $ (eq' $ l' $ r')) =>
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1167
        Not = HOLogic.Not andalso eq' = eq andalso
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1168
        r' aconv lhs andalso l' aconv rhs
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1169
    | _ => false);
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1170
  fun proc ss ct =
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1171
    (case Thm.term_of ct of
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1172
      eq $ lhs $ rhs =>
43597
b4a093e755db tuned signature;
wenzelm
parents: 43560
diff changeset
  1173
        (case find_first (is_neq eq lhs rhs) (Simplifier.prems_of ss) of
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1174
          SOME thm => SOME (thm RS neq_to_EQ_False)
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1175
        | NONE => NONE)
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1176
     | _ => NONE);
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1177
in proc end;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1178
\<close>
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1179
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1180
simproc_setup let_simp ("Let x f") = \<open>
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1181
let
28741
1b257449f804 simproc for let
haftmann
parents: 28699
diff changeset
  1182
  fun count_loose (Bound i) k = if i >= k then 1 else 0
1b257449f804 simproc for let
haftmann
parents: 28699
diff changeset
  1183
    | count_loose (s $ t) k = count_loose s k + count_loose t k
1b257449f804 simproc for let
haftmann
parents: 28699
diff changeset
  1184
    | count_loose (Abs (_, _, t)) k = count_loose  t (k + 1)
1b257449f804 simproc for let
haftmann
parents: 28699
diff changeset
  1185
    | count_loose _ _ = 0;
1b257449f804 simproc for let
haftmann
parents: 28699
diff changeset
  1186
  fun is_trivial_let (Const (@{const_name Let}, _) $ x $ t) =
59628
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1187
    (case t of
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1188
      Abs (_, _, t') => count_loose t' 0 <= 1
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1189
    | _ => true);
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1190
in
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1191
  fn _ => fn ctxt => fn ct =>
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1192
    if is_trivial_let (Thm.term_of ct)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1193
    then SOME @{thm Let_def} (*no or one ocurrence of bound variable*)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1194
    else
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1195
      let (*Norbert Schirmer's case*)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1196
        val t = Thm.term_of ct;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1197
        val ([t'], ctxt') = Variable.import_terms false [t] ctxt;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1198
      in
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1199
        Option.map (hd o Variable.export ctxt' ctxt o single)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1200
          (case t' of Const (@{const_name Let},_) $ x $ f => (* x and f are already in normal form *)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1201
            if is_Free x orelse is_Bound x orelse is_Const x
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1202
            then SOME @{thm Let_def}
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1203
            else
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1204
              let
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1205
                val n = case f of (Abs (x, _, _)) => x | _ => "x";
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1206
                val cx = Thm.cterm_of ctxt x;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1207
                val xT = Thm.typ_of_cterm cx;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1208
                val cf = Thm.cterm_of ctxt f;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1209
                val fx_g = Simplifier.rewrite ctxt (Thm.apply cf cx);
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1210
                val (_ $ _ $ g) = Thm.prop_of fx_g;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1211
                val g' = abstract_over (x, g);
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1212
                val abs_g'= Abs (n, xT, g');
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1213
              in
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1214
                if g aconv g' then
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1215
                  let
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1216
                    val rl =
60781
2da59cdf531c updated to infer_instantiate;
wenzelm
parents: 60761
diff changeset
  1217
                      infer_instantiate ctxt [(("f", 0), cf), (("x", 0), cx)] @{thm Let_unfold};
59628
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1218
                  in SOME (rl OF [fx_g]) end
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1219
                else if (Envir.beta_eta_contract f) aconv (Envir.beta_eta_contract abs_g')
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1220
                then NONE (*avoid identity conversion*)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1221
                else
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1222
                  let
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1223
                    val g'x = abs_g' $ x;
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1224
                    val g_g'x = Thm.symmetric (Thm.beta_conversion false (Thm.cterm_of ctxt g'x));
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1225
                    val rl =
60781
2da59cdf531c updated to infer_instantiate;
wenzelm
parents: 60761
diff changeset
  1226
                      @{thm Let_folded} |> infer_instantiate ctxt
2da59cdf531c updated to infer_instantiate;
wenzelm
parents: 60761
diff changeset
  1227
                        [(("f", 0), Thm.cterm_of ctxt f),
2da59cdf531c updated to infer_instantiate;
wenzelm
parents: 60761
diff changeset
  1228
                         (("x", 0), cx),
2da59cdf531c updated to infer_instantiate;
wenzelm
parents: 60761
diff changeset
  1229
                         (("g", 0), Thm.cterm_of ctxt abs_g')];
59628
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1230
                  in SOME (rl OF [Thm.transitive fx_g g_g'x]) end
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1231
              end
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1232
          | _ => NONE)
2b15625b85fc clarified context;
wenzelm
parents: 59621
diff changeset
  1233
      end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1234
end\<close>
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
  1235
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1236
lemma True_implies_equals: "(True \<Longrightarrow> PROP P) \<equiv> PROP P"
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1237
proof
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23263
diff changeset
  1238
  assume "True \<Longrightarrow> PROP P"
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23263
diff changeset
  1239
  from this [OF TrueI] show "PROP P" .
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1240
next
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1241
  assume "PROP P"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23263
diff changeset
  1242
  then show "PROP P" .
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1243
qed
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1244
59864
c777743294e1 added lemmas
nipkow
parents: 59779
diff changeset
  1245
lemma implies_True_equals: "(PROP P \<Longrightarrow> True) \<equiv> Trueprop True"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61144
diff changeset
  1246
  by standard (intro TrueI)
59864
c777743294e1 added lemmas
nipkow
parents: 59779
diff changeset
  1247
c777743294e1 added lemmas
nipkow
parents: 59779
diff changeset
  1248
lemma False_implies_equals: "(False \<Longrightarrow> P) \<equiv> Trueprop True"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61144
diff changeset
  1249
  by standard simp_all
59864
c777743294e1 added lemmas
nipkow
parents: 59779
diff changeset
  1250
60183
4cd4c204578c undid 6d7b7a037e8d because it does not help but slows simplification down by up to 5% (AODV)
nipkow
parents: 60169
diff changeset
  1251
(* This is not made a simp rule because it does not improve any proofs
4cd4c204578c undid 6d7b7a037e8d because it does not help but slows simplification down by up to 5% (AODV)
nipkow
parents: 60169
diff changeset
  1252
   but slows some AFP entries down by 5% (cpu time). May 2015 *)
60169
5ef8ed685965 swap False to the right in assumptions to be eliminated at the right end
nipkow
parents: 60151
diff changeset
  1253
lemma implies_False_swap: "NO_MATCH (Trueprop False) P \<Longrightarrow>
5ef8ed685965 swap False to the right in assumptions to be eliminated at the right end
nipkow
parents: 60151
diff changeset
  1254
  (False \<Longrightarrow> PROP P \<Longrightarrow> PROP Q) \<equiv> (PROP P \<Longrightarrow> False \<Longrightarrow> PROP Q)"
5ef8ed685965 swap False to the right in assumptions to be eliminated at the right end
nipkow
parents: 60151
diff changeset
  1255
by(rule swap_prems_eq)
5ef8ed685965 swap False to the right in assumptions to be eliminated at the right end
nipkow
parents: 60151
diff changeset
  1256
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1257
lemma ex_simps:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1258
  "\<And>P Q. (\<exists>x. P x \<and> Q)   = ((\<exists>x. P x) \<and> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1259
  "\<And>P Q. (\<exists>x. P \<and> Q x)   = (P \<and> (\<exists>x. Q x))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1260
  "\<And>P Q. (\<exists>x. P x \<or> Q)   = ((\<exists>x. P x) \<or> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1261
  "\<And>P Q. (\<exists>x. P \<or> Q x)   = (P \<or> (\<exists>x. Q x))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1262
  "\<And>P Q. (\<exists>x. P x \<longrightarrow> Q) = ((\<forall>x. P x) \<longrightarrow> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1263
  "\<And>P Q. (\<exists>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<exists>x. Q x))"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1264
  -- \<open>Miniscoping: pushing in existential quantifiers.\<close>
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1265
  by (iprover | blast)+
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1266
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1267
lemma all_simps:
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1268
  "\<And>P Q. (\<forall>x. P x \<and> Q)   = ((\<forall>x. P x) \<and> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1269
  "\<And>P Q. (\<forall>x. P \<and> Q x)   = (P \<and> (\<forall>x. Q x))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1270
  "\<And>P Q. (\<forall>x. P x \<or> Q)   = ((\<forall>x. P x) \<or> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1271
  "\<And>P Q. (\<forall>x. P \<or> Q x)   = (P \<or> (\<forall>x. Q x))"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1272
  "\<And>P Q. (\<forall>x. P x \<longrightarrow> Q) = ((\<exists>x. P x) \<longrightarrow> Q)"
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1273
  "\<And>P Q. (\<forall>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<forall>x. Q x))"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1274
  -- \<open>Miniscoping: pushing in universal quantifiers.\<close>
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1275
  by (iprover | blast)+
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15423
diff changeset
  1276
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1277
lemmas [simp] =
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1278
  triv_forall_equality (*prunes params*)
60143
2cd31c81e0e7 added simp rules for ==>
nipkow
parents: 59990
diff changeset
  1279
  True_implies_equals implies_True_equals (*prune True in asms*)
60183
4cd4c204578c undid 6d7b7a037e8d because it does not help but slows simplification down by up to 5% (AODV)
nipkow
parents: 60169
diff changeset
  1280
  False_implies_equals (*prune False in asms*)
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1281
  if_True
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1282
  if_False
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1283
  if_cancel
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1284
  if_eq_cancel
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1285
  imp_disjL
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1286
  (*In general it seems wrong to add distributive laws by default: they
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1287
    might cause exponential blow-up.  But imp_disjL has been in for a while
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1288
    and cannot be removed without affecting existing proofs.  Moreover,
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1289
    rewriting by "(P \<or> Q \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))" might be justified on the
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1290
    grounds that it allows simplification of R in the two cases.*)
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1291
  conj_assoc
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1292
  disj_assoc
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1293
  de_Morgan_conj
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1294
  de_Morgan_disj
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1295
  imp_disj1
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1296
  imp_disj2
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1297
  not_imp
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1298
  disj_not1
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1299
  not_all
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1300
  not_ex
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1301
  cases_simp
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1302
  the_eq_trivial
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1303
  the_sym_eq_trivial
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1304
  ex_simps
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1305
  all_simps
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1306
  simp_thms
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1307
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1308
lemmas [cong] = imp_cong simp_implies_cong
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1309
lemmas [split] = split_if
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1310
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1311
ML \<open>val HOL_ss = simpset_of @{context}\<close>
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
  1312
60761
a443b08281e2 proper LaTeX;
wenzelm
parents: 60759
diff changeset
  1313
text \<open>Simplifies @{term x} assuming @{prop c} and @{term y} assuming @{prop "\<not> c"}\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1314
lemma if_cong:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1315
  assumes "b = c"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1316
      and "c \<Longrightarrow> x = u"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1317
      and "\<not> c \<Longrightarrow> y = v"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1318
  shows "(if b then x else y) = (if c then u else v)"
38525
324219de6ee3 qualified constants Let and If
haftmann
parents: 37877
diff changeset
  1319
  using assms by simp
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1320
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1321
text \<open>Prevents simplification of x and y:
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1322
  faster and allows the execution of functional programs.\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1323
lemma if_weak_cong [cong]:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1324
  assumes "b = c"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1325
  shows "(if b then x else y) = (if c then x else y)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1326
  using assms by (rule arg_cong)
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1327
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1328
text \<open>Prevents simplification of t: much faster\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1329
lemma let_weak_cong:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1330
  assumes "a = b"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1331
  shows "(let x = a in t x) = (let x = b in t x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1332
  using assms by (rule arg_cong)
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1333
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1334
text \<open>To tidy up the result of a simproc.  Only the RHS will be simplified.\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1335
lemma eq_cong2:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1336
  assumes "u = u'"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1337
  shows "(t \<equiv> u) \<equiv> (t \<equiv> u')"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
  1338
  using assms by simp
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1339
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1340
lemma if_distrib:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1341
  "f (if c then x else y) = (if c then f x else f y)"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1342
  by simp
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1343
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1344
text\<open>As a simplification rule, it replaces all function equalities by
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1345
  first-order equalities.\<close>
44277
bcb696533579 moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents: 44121
diff changeset
  1346
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
  1347
  by auto
bcb696533579 moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents: 44121
diff changeset
  1348
17459
9a3925c07392 added code generator setup (from Main.thy);
wenzelm
parents: 17404
diff changeset
  1349
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1350
subsubsection \<open>Generic cases and induction\<close>
17459
9a3925c07392 added code generator setup (from Main.thy);
wenzelm
parents: 17404
diff changeset
  1351
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1352
text \<open>Rule projections:\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1353
ML \<open>
32172
c4e55f30d527 renamed functor ProjectRuleFun to Project_Rule;
wenzelm
parents: 32171
diff changeset
  1354
structure Project_Rule = Project_Rule
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
  1355
(
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1356
  val conjunct1 = @{thm conjunct1}
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1357
  val conjunct2 = @{thm conjunct2}
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1358
  val mp = @{thm mp}
59929
wenzelm
parents: 59864
diff changeset
  1359
);
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1360
\<close>
17459
9a3925c07392 added code generator setup (from Main.thy);
wenzelm
parents: 17404
diff changeset
  1361
59940
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1362
context
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1363
begin
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1364
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
  1365
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
  1366
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
  1367
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
  1368
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
  1369
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
  1370
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
  1371
59929
wenzelm
parents: 59864
diff changeset
  1372
lemma induct_forall_eq: "(\<And>x. P x) \<equiv> Trueprop (induct_forall (\<lambda>x. P x))"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1373
  by (unfold atomize_all induct_forall_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1374
59929
wenzelm
parents: 59864
diff changeset
  1375
lemma induct_implies_eq: "(A \<Longrightarrow> B) \<equiv> Trueprop (induct_implies A B)"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1376
  by (unfold atomize_imp induct_implies_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1377
59929
wenzelm
parents: 59864
diff changeset
  1378
lemma induct_equal_eq: "(x \<equiv> y) \<equiv> Trueprop (induct_equal x y)"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1379
  by (unfold atomize_eq induct_equal_def)
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1380
59929
wenzelm
parents: 59864
diff changeset
  1381
lemma induct_conj_eq: "(A &&& B) \<equiv> Trueprop (induct_conj A B)"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1382
  by (unfold atomize_conj induct_conj_def)
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1383
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1384
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
  1385
lemmas induct_atomize = induct_atomize' induct_equal_eq
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45294
diff changeset
  1386
lemmas induct_rulify' [symmetric] = induct_atomize'
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45294
diff changeset
  1387
lemmas induct_rulify [symmetric] = induct_atomize
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1388
lemmas induct_rulify_fallback =
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1389
  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
  1390
  induct_true_def induct_false_def
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1391
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1392
lemma induct_forall_conj: "induct_forall (\<lambda>x. induct_conj (A x) (B x)) =
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1393
    induct_conj (induct_forall A) (induct_forall B)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
  1394
  by (unfold induct_forall_def induct_conj_def) iprover
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1395
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1396
lemma induct_implies_conj: "induct_implies C (induct_conj A B) =
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1397
    induct_conj (induct_implies C A) (induct_implies C B)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
  1398
  by (unfold induct_implies_def induct_conj_def) iprover
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1399
59929
wenzelm
parents: 59864
diff changeset
  1400
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
  1401
proof
59929
wenzelm
parents: 59864
diff changeset
  1402
  assume r: "induct_conj A B \<Longrightarrow> PROP C"
wenzelm
parents: 59864
diff changeset
  1403
  assume ab: A B
wenzelm
parents: 59864
diff changeset
  1404
  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
  1405
next
59929
wenzelm
parents: 59864
diff changeset
  1406
  assume r: "A \<Longrightarrow> B \<Longrightarrow> PROP C"
wenzelm
parents: 59864
diff changeset
  1407
  assume ab: "induct_conj A B"
wenzelm
parents: 59864
diff changeset
  1408
  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
  1409
qed
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1410
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
  1411
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
  1412
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1413
lemma induct_trueI: "induct_true"
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1414
  by (simp add: induct_true_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1415
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1416
text \<open>Method setup.\<close>
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1417
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1418
ML_file "~~/src/Tools/induct.ML"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1419
ML \<open>
32171
220abde9962b renamed functor InductFun to Induct;
wenzelm
parents: 32149
diff changeset
  1420
structure Induct = Induct
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1421
(
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1422
  val cases_default = @{thm case_split}
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1423
  val atomize = @{thms induct_atomize}
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1424
  val rulify = @{thms induct_rulify'}
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1425
  val rulify_fallback = @{thms induct_rulify_fallback}
34988
cca208c8d619 Added setup for simplification of equality constraints in cases rules.
berghofe
parents: 34917
diff changeset
  1426
  val equal_def = @{thm induct_equal_def}
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1427
  fun dest_def (Const (@{const_name induct_equal}, _) $ t $ u) = SOME (t, u)
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1428
    | dest_def _ = NONE
58957
c9e744ea8a38 proper context for match_tac etc.;
wenzelm
parents: 58956
diff changeset
  1429
  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
  1430
)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1431
\<close>
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
  1432
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
  1433
ML_file "~~/src/Tools/induction.ML"
45014
0e847655b2d8 New proof method "induction" that gives induction hypotheses the name IH.
nipkow
parents: 44921
diff changeset
  1434
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1435
declaration \<open>
59940
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1436
  fn _ => Induct.map_simpset (fn ss => ss
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1437
    addsimprocs
61144
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1438
      [Simplifier.make_simproc @{context} "swap_induct_false"
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1439
        {lhss = [@{term "induct_false \<Longrightarrow> PROP P \<Longrightarrow> PROP Q"}],
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1440
         proc = fn _ => fn _ => fn ct =>
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1441
          (case Thm.term_of ct of
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1442
            _ $ (P as _ $ @{const induct_false}) $ (_ $ Q $ _) =>
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1443
              if P <> Q then SOME Drule.swap_prems_eq else NONE
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1444
          | _ => NONE),
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1445
         identifier = []},
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1446
       Simplifier.make_simproc @{context} "induct_equal_conj_curry"
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1447
        {lhss = [@{term "induct_conj P Q \<Longrightarrow> PROP R"}],
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1448
         proc = fn _ => fn _ => fn ct =>
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1449
          (case Thm.term_of ct of
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1450
            _ $ (_ $ P) $ _ =>
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1451
              let
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1452
                fun is_conj (@{const induct_conj} $ P $ Q) =
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1453
                      is_conj P andalso is_conj Q
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1454
                  | is_conj (Const (@{const_name induct_equal}, _) $ _ $ _) = true
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1455
                  | is_conj @{const induct_true} = true
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1456
                  | is_conj @{const induct_false} = true
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1457
                  | is_conj _ = false
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1458
              in if is_conj P then SOME @{thm induct_conj_curry} else NONE end
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1459
            | _ => NONE),
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1460
          identifier = []}]
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 53146
diff changeset
  1461
    |> Simplifier.set_mksimps (fn ctxt =>
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 53146
diff changeset
  1462
        Simpdata.mksimps Simpdata.mksimps_pairs ctxt #>
59940
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1463
        map (rewrite_rule ctxt (map Thm.symmetric @{thms induct_rulify_fallback}))))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1464
\<close>
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1465
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1466
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
  1467
59929
wenzelm
parents: 59864
diff changeset
  1468
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
  1469
  unfolding induct_equal_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1470
proof
59929
wenzelm
parents: 59864
diff changeset
  1471
  assume r: "\<And>x. x = t \<Longrightarrow> PROP P x"
wenzelm
parents: 59864
diff changeset
  1472
  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
  1473
next
59929
wenzelm
parents: 59864
diff changeset
  1474
  fix x
wenzelm
parents: 59864
diff changeset
  1475
  assume "PROP P t" "x = t"
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1476
  then show "PROP P x" by simp
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1477
qed
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1478
59929
wenzelm
parents: 59864
diff changeset
  1479
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
  1480
  unfolding induct_equal_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1481
proof
59929
wenzelm
parents: 59864
diff changeset
  1482
  assume r: "\<And>x. t = x \<Longrightarrow> PROP P x"
wenzelm
parents: 59864
diff changeset
  1483
  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
  1484
next
59929
wenzelm
parents: 59864
diff changeset
  1485
  fix x
wenzelm
parents: 59864
diff changeset
  1486
  assume "PROP P t" "t = x"
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1487
  then show "PROP P x" by simp
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1488
qed
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1489
59929
wenzelm
parents: 59864
diff changeset
  1490
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
  1491
  unfolding induct_false_def induct_true_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1492
  by (iprover intro: equal_intr_rule)
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1493
59929
wenzelm
parents: 59864
diff changeset
  1494
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
  1495
  unfolding induct_true_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1496
proof
59929
wenzelm
parents: 59864
diff changeset
  1497
  assume "True \<Longrightarrow> PROP P"
wenzelm
parents: 59864
diff changeset
  1498
  then show "PROP P" using TrueI .
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1499
next
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1500
  assume "PROP P"
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1501
  then show "PROP P" .
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1502
qed
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1503
59929
wenzelm
parents: 59864
diff changeset
  1504
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
  1505
  unfolding induct_true_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1506
  by (iprover intro: equal_intr_rule)
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1507
59929
wenzelm
parents: 59864
diff changeset
  1508
lemma [induct_simp]: "(\<And>x. induct_true) \<equiv> Trueprop induct_true"
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1509
  unfolding induct_true_def
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1510
  by (iprover intro: equal_intr_rule)
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1511
59929
wenzelm
parents: 59864
diff changeset
  1512
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
  1513
  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
  1514
59929
wenzelm
parents: 59864
diff changeset
  1515
lemma [induct_simp]: "x = x \<longleftrightarrow> True"
34908
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1516
  by (rule simp_thms)
d546e75631bb Added setup for simplification of equality constraints in induction rules.
berghofe
parents: 34294
diff changeset
  1517
59940
087d81f5213e local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents: 59929
diff changeset
  1518
end
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
  1519
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 48776
diff changeset
  1520
ML_file "~~/src/Tools/induct_tacs.ML"
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1521
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1522
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1523
subsubsection \<open>Coherent logic\<close>
28325
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
  1524
55632
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1525
ML_file "~~/src/Tools/coherent.ML"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1526
ML \<open>
32734
06c13b2e562e misc tuning and modernization;
wenzelm
parents: 32733
diff changeset
  1527
structure Coherent = Coherent
28325
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
  1528
(
55632
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1529
  val atomize_elimL = @{thm atomize_elimL};
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1530
  val atomize_exL = @{thm atomize_exL};
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1531
  val atomize_conjL = @{thm atomize_conjL};
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1532
  val atomize_disjL = @{thm atomize_disjL};
0f9d03649a9c modernized tool setup;
wenzelm
parents: 55385
diff changeset
  1533
  val operator_names = [@{const_name HOL.disj}, @{const_name HOL.conj}, @{const_name Ex}];
28325
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
  1534
);
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1535
\<close>
28325
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
  1536
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
  1537
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1538
subsubsection \<open>Reorienting equalities\<close>
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1539
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1540
ML \<open>
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1541
signature REORIENT_PROC =
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1542
sig
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1543
  val add : (term -> bool) -> theory -> theory
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51692
diff changeset
  1544
  val proc : morphism -> Proof.context -> cterm -> thm option
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1545
end;
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1546
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1547
structure Reorient_Proc : REORIENT_PROC =
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1548
struct
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1549
  structure Data = Theory_Data
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1550
  (
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1551
    type T = ((term -> bool) * stamp) list;
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1552
    val empty = [];
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1553
    val extend = I;
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1554
    fun merge data : T = Library.merge (eq_snd op =) data;
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1555
  );
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1556
  fun add m = Data.map (cons (m, stamp ()));
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1557
  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
  1558
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1559
  val meta_reorient = @{thm eq_commute [THEN eq_reflection]};
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51692
diff changeset
  1560
  fun proc phi ctxt ct =
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1561
    let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42284
diff changeset
  1562
      val thy = Proof_Context.theory_of ctxt;
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1563
    in
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1564
      case Thm.term_of ct of
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33369
diff changeset
  1565
        (_ $ 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
  1566
      | _ => NONE
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1567
    end;
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1568
end;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1569
\<close>
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1570
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 30980
diff changeset
  1571
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1572
subsection \<open>Other simple lemmas and lemma duplicates\<close>
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1573
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1574
lemma ex1_eq [iff]: "\<exists>!x. x = t" "\<exists>!x. t = x"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1575
  by blast+
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1576
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1577
lemma choice_eq: "(\<forall>x. \<exists>!y. P x y) = (\<exists>!f. \<forall>x. P x (f x))"
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1578
  apply (rule iffI)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1579
  apply (rule_tac a = "\<lambda>x. THE y. P x y" in ex1I)
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1580
  apply (fast dest!: theI')
44921
58eef4843641 tuned proofs
huffman
parents: 44277
diff changeset
  1581
  apply (fast intro: the1_equality [symmetric])
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1582
  apply (erule ex1E)
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1583
  apply (rule allI)
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1584
  apply (rule ex1I)
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1585
  apply (erule spec)
60759
36d9f215c982 more symbols;
wenzelm
parents: 60758
diff changeset
  1586
  apply (erule_tac x = "\<lambda>z. if z = x then y else f z" in allE)
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1587
  apply (erule impE)
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1588
  apply (rule allI)
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
  1589
  apply (case_tac "xa = x")
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1590
  apply (drule_tac [3] x = x in fun_cong, simp_all)
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1591
  done
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1592
22218
30a8890d2967 dropped lemma duplicates in HOL.thy
haftmann
parents: 22129
diff changeset
  1593
lemmas eq_sym_conv = eq_commute
30a8890d2967 dropped lemma duplicates in HOL.thy
haftmann
parents: 22129
diff changeset
  1594
23037
6c72943a71b1 added a set of NNF normalization lemmas and nnf_conv
chaieb
parents: 22993
diff changeset
  1595
lemma nnf_simps:
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1596
  "(\<not>(P \<and> Q)) = (\<not> P \<or> \<not> Q)" "(\<not> (P \<or> Q)) = (\<not> P \<and> \<not>Q)" "(P \<longrightarrow> Q) = (\<not>P \<or> Q)"
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1597
  "(P = Q) = ((P \<and> Q) \<or> (\<not>P \<and> \<not> Q))" "(\<not>(P = Q)) = ((P \<and> \<not> Q) \<or> (\<not>P \<and> Q))"
23037
6c72943a71b1 added a set of NNF normalization lemmas and nnf_conv
chaieb
parents: 22993
diff changeset
  1598
  "(\<not> \<not>(P)) = P"
6c72943a71b1 added a set of NNF normalization lemmas and nnf_conv
chaieb
parents: 22993
diff changeset
  1599
by blast+
6c72943a71b1 added a set of NNF normalization lemmas and nnf_conv
chaieb
parents: 22993
diff changeset
  1600
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1601
subsection \<open>Basic ML bindings\<close>
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1602
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1603
ML \<open>
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1604
val FalseE = @{thm FalseE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1605
val Let_def = @{thm Let_def}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1606
val TrueI = @{thm TrueI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1607
val allE = @{thm allE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1608
val allI = @{thm allI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1609
val all_dupE = @{thm all_dupE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1610
val arg_cong = @{thm arg_cong}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1611
val box_equals = @{thm box_equals}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1612
val ccontr = @{thm ccontr}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1613
val classical = @{thm classical}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1614
val conjE = @{thm conjE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1615
val conjI = @{thm conjI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1616
val conjunct1 = @{thm conjunct1}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1617
val conjunct2 = @{thm conjunct2}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1618
val disjCI = @{thm disjCI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1619
val disjE = @{thm disjE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1620
val disjI1 = @{thm disjI1}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1621
val disjI2 = @{thm disjI2}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1622
val eq_reflection = @{thm eq_reflection}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1623
val ex1E = @{thm ex1E}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1624
val ex1I = @{thm ex1I}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1625
val ex1_implies_ex = @{thm ex1_implies_ex}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1626
val exE = @{thm exE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1627
val exI = @{thm exI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1628
val excluded_middle = @{thm excluded_middle}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1629
val ext = @{thm ext}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1630
val fun_cong = @{thm fun_cong}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1631
val iffD1 = @{thm iffD1}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1632
val iffD2 = @{thm iffD2}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1633
val iffI = @{thm iffI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1634
val impE = @{thm impE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1635
val impI = @{thm impI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1636
val meta_eq_to_obj_eq = @{thm meta_eq_to_obj_eq}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1637
val mp = @{thm mp}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1638
val notE = @{thm notE}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1639
val notI = @{thm notI}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1640
val not_all = @{thm not_all}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1641
val not_ex = @{thm not_ex}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1642
val not_iff = @{thm not_iff}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1643
val not_not = @{thm not_not}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1644
val not_sym = @{thm not_sym}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1645
val refl = @{thm refl}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1646
val rev_mp = @{thm rev_mp}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1647
val spec = @{thm spec}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1648
val ssubst = @{thm ssubst}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1649
val subst = @{thm subst}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1650
val sym = @{thm sym}
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1651
val trans = @{thm trans}
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1652
\<close>
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1653
55239
97921d23ebe3 more standard file/module names;
wenzelm
parents: 54890
diff changeset
  1654
ML_file "Tools/cnf.ML"
97921d23ebe3 more standard file/module names;
wenzelm
parents: 54890
diff changeset
  1655
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1656
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1657
section \<open>@{text NO_MATCH} simproc\<close>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1658
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1659
text \<open>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1660
 The simplification procedure can be used to avoid simplification of terms of a certain form
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1661
\<close>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1662
59779
b6bda9140e39 fix parameter order of NO_MATCH
hoelzl
parents: 59628
diff changeset
  1663
definition NO_MATCH :: "'a \<Rightarrow> 'b \<Rightarrow> bool" where "NO_MATCH pat val \<equiv> True"
58830
e05c620eceeb disable coercions for NO_MATCH
hoelzl
parents: 58826
diff changeset
  1664
59779
b6bda9140e39 fix parameter order of NO_MATCH
hoelzl
parents: 59628
diff changeset
  1665
lemma NO_MATCH_cong[cong]: "NO_MATCH pat val = NO_MATCH pat val" by (rule refl)
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1666
58830
e05c620eceeb disable coercions for NO_MATCH
hoelzl
parents: 58826
diff changeset
  1667
declare [[coercion_args NO_MATCH - -]]
e05c620eceeb disable coercions for NO_MATCH
hoelzl
parents: 58826
diff changeset
  1668
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1669
simproc_setup NO_MATCH ("NO_MATCH pat val") = \<open>fn _ => fn ctxt => fn ct =>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1670
  let
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1671
    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
  1672
    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
  1673
    val m = Pattern.matches thy (dest_binop (Thm.term_of ct))
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1674
  in if m then NONE else SOME @{thm NO_MATCH_def} end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1675
\<close>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1676
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1677
text \<open>
59779
b6bda9140e39 fix parameter order of NO_MATCH
hoelzl
parents: 59628
diff changeset
  1678
  This setup ensures that a rewrite rule of the form @{term "NO_MATCH pat val \<Longrightarrow> t"}
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1679
  is only applied, if the pattern @{term pat} does not match the value @{term val}.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1680
\<close>
58775
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1681
9cd64a66a765 move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents: 58659
diff changeset
  1682
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 61202
diff changeset
  1683
text\<open>Tagging a premise of a simp rule with ASSUMPTION forces the simplifier
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 61202
diff changeset
  1684
not to simplify the argument and to solve it by an assumption.\<close>
61202
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1685
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1686
definition ASSUMPTION :: "bool \<Rightarrow> bool" where
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1687
"ASSUMPTION A \<equiv> A"
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1688
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1689
lemma ASSUMPTION_cong[cong]: "ASSUMPTION A = ASSUMPTION A"
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1690
by (rule refl)
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1691
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1692
lemma ASSUMPTION_I: "A \<Longrightarrow> ASSUMPTION A"
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1693
by(simp add: ASSUMPTION_def)
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1694
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1695
lemma ASSUMPTION_D: "ASSUMPTION A \<Longrightarrow> A"
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1696
by(simp add: ASSUMPTION_def)
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1697
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 61202
diff changeset
  1698
setup \<open>
61202
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1699
let
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1700
  val asm_sol = mk_solver "ASSUMPTION" (fn ctxt =>
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1701
    resolve_tac ctxt [@{thm ASSUMPTION_I}] THEN'
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1702
    resolve_tac ctxt (Simplifier.prems_of ctxt))
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1703
in
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1704
  map_theory_simpset (fn ctxt => Simplifier.addSolver (ctxt,asm_sol))
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1705
end
61222
05d28dc76e5c isabelle update_cartouches;
wenzelm
parents: 61202
diff changeset
  1706
\<close>
61202
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1707
9e37178084c5 Added new simplifier predicate ASSUMPTION
nipkow
parents: 61169
diff changeset
  1708
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1709
subsection \<open>Code generator setup\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1710
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1711
subsubsection \<open>Generic code generator preprocessor setup\<close>
31151
1c64b0827ee8 rewrite op = == eq handled by simproc
haftmann
parents: 31132
diff changeset
  1712
53146
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1713
lemma conj_left_cong:
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1714
  "P \<longleftrightarrow> Q \<Longrightarrow> P \<and> R \<longleftrightarrow> Q \<and> R"
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1715
  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
  1716
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1717
lemma disj_left_cong:
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1718
  "P \<longleftrightarrow> Q \<Longrightarrow> P \<or> R \<longleftrightarrow> Q \<or> R"
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1719
  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
  1720
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1721
setup \<open>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1722
  Code_Preproc.map_pre (put_simpset HOL_basic_ss) #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1723
  Code_Preproc.map_post (put_simpset HOL_basic_ss) #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1724
  Code_Simp.map_ss (put_simpset HOL_basic_ss #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1725
  Simplifier.add_cong @{thm conj_left_cong} #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1726
  Simplifier.add_cong @{thm disj_left_cong})
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1727
\<close>
31151
1c64b0827ee8 rewrite op = == eq handled by simproc
haftmann
parents: 31132
diff changeset
  1728
53146
3a93bc5d3370 congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents: 52654
diff changeset
  1729
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1730
subsubsection \<open>Equality\<close>
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24842
diff changeset
  1731
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1732
class equal =
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1733
  fixes equal :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1734
  assumes equal_eq: "equal x y \<longleftrightarrow> x = y"
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26496
diff changeset
  1735
begin
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26496
diff changeset
  1736
45231
d85a2fdc586c replacing code_inline by code_unfold, removing obsolete code_unfold, code_inline del now that the ancient code generator is removed
bulwahn
parents: 45171
diff changeset
  1737
lemma equal: "equal = (op =)"
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1738
  by (rule ext equal_eq)+
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28325
diff changeset
  1739
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1740
lemma equal_refl: "equal x x \<longleftrightarrow> True"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1741
  unfolding equal by rule+
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28325
diff changeset
  1742
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1743
lemma eq_equal: "(op =) \<equiv> equal"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1744
  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
  1745
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26496
diff changeset
  1746
end
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26496
diff changeset
  1747
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1748
declare eq_equal [symmetric, code_post]
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1749
declare eq_equal [code]
30966
55104c664185 avoid local [code]
haftmann
parents: 30947
diff changeset
  1750
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1751
setup \<open>
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51692
diff changeset
  1752
  Code_Preproc.map_pre (fn ctxt =>
61144
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1753
    ctxt addsimprocs
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1754
      [Simplifier.make_simproc @{context} "equal"
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1755
        {lhss = [@{term HOL.eq}],
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1756
         proc = fn _ => fn _ => fn ct =>
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1757
          (case Thm.term_of ct of
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1758
            Const (_, Type (@{type_name fun}, [Type _, _])) => SOME @{thm eq_equal}
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1759
          | _ => NONE),
5e94dfead1c2 simplified simproc programming interfaces;
wenzelm
parents: 61076
diff changeset
  1760
         identifier = []}])
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1761
\<close>
31151
1c64b0827ee8 rewrite op = == eq handled by simproc
haftmann
parents: 31132
diff changeset
  1762
30966
55104c664185 avoid local [code]
haftmann
parents: 30947
diff changeset
  1763
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1764
subsubsection \<open>Generic code generator foundation\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1765
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1766
text \<open>Datatype @{typ bool}\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1767
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1768
code_datatype True False
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1769
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1770
lemma [code]:
33185
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1771
  shows "False \<and> P \<longleftrightarrow> False"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1772
    and "True \<and> P \<longleftrightarrow> P"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1773
    and "P \<and> False \<longleftrightarrow> False"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1774
    and "P \<and> True \<longleftrightarrow> P" by simp_all
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1775
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1776
lemma [code]:
33185
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1777
  shows "False \<or> P \<longleftrightarrow> P"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1778
    and "True \<or> P \<longleftrightarrow> True"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1779
    and "P \<or> False \<longleftrightarrow> P"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1780
    and "P \<or> True \<longleftrightarrow> True" by simp_all
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1781
33185
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1782
lemma [code]:
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1783
  shows "(False \<longrightarrow> P) \<longleftrightarrow> True"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1784
    and "(True \<longrightarrow> P) \<longleftrightarrow> P"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1785
    and "(P \<longrightarrow> False) \<longleftrightarrow> \<not> P"
247f6c6969d9 tuned code setup for primitive boolean connectors
haftmann
parents: 33084
diff changeset
  1786
    and "(P \<longrightarrow> True) \<longleftrightarrow> True" by simp_all
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1787
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1788
text \<open>More about @{typ prop}\<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
  1789
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1790
lemma [code nbe]:
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1791
  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
  1792
    and "(PROP Q \<Longrightarrow> True) \<equiv> Trueprop True"
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1793
    and "(P \<Longrightarrow> R) \<equiv> Trueprop (P \<longrightarrow> R)" by (auto intro!: equal_intr_rule)
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1794
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1795
lemma Trueprop_code [code]:
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1796
  "Trueprop True \<equiv> Code_Generator.holds"
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1797
  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
  1798
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1799
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
  1800
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1801
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
  1802
b6a77cffc231 introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents: 39403
diff changeset
  1803
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
  1804
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1805
instantiation itself :: (type) equal
31132
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1806
begin
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1807
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1808
definition equal_itself :: "'a itself \<Rightarrow> 'a itself \<Rightarrow> bool" where
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1809
  "equal_itself x y \<longleftrightarrow> x = y"
31132
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1810
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1811
instance proof
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1812
qed (fact equal_itself_def)
31132
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1813
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1814
end
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1815
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1816
lemma equal_itself_code [code]:
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1817
  "equal TYPE('a) TYPE('a) \<longleftrightarrow> True"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1818
  by (simp add: equal)
31132
bfafc204042a itself is instance of eq
haftmann
parents: 31125
diff changeset
  1819
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60781
diff changeset
  1820
setup \<open>Sign.add_const_constraint (@{const_name equal}, SOME @{typ "'a::type \<Rightarrow> 'a \<Rightarrow> bool"})\<close>
31956
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1821
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1822
lemma equal_alias_cert: "OFCLASS('a, equal_class) \<equiv> ((op = :: 'a \<Rightarrow> 'a \<Rightarrow> bool) \<equiv> equal)" (is "?ofclass \<equiv> ?equal")
31956
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1823
proof
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1824
  assume "PROP ?ofclass"
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1825
  show "PROP ?equal"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1826
    by (tactic \<open>ALLGOALS (resolve_tac @{context} [Thm.unconstrainT @{thm eq_equal}])\<close>)
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1827
      (fact \<open>PROP ?ofclass\<close>)
31956
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1828
next
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
  1829
  assume "PROP ?equal"
31956
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1830
  show "PROP ?ofclass" proof
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1831
  qed (simp add: \<open>PROP ?equal\<close>)
31956
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1832
qed
c3844c4d0c2c more accurate certificates for constant aliasses
haftmann
parents: 31902
diff changeset
  1833
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60781
diff changeset
  1834
setup \<open>Sign.add_const_constraint (@{const_name equal}, SOME @{typ "'a::equal \<Rightarrow> 'a \<Rightarrow> bool"})\<close>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1835
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1836
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
  1837
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1838
text \<open>Cases\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1839
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1840
lemma Let_case_cert:
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1841
  assumes "CASE \<equiv> (\<lambda>x. Let x f)"
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1842
  shows "CASE x \<equiv> f x"
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1843
  using assms by simp_all
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1844
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1845
setup \<open>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1846
  Code.add_case @{thm Let_case_cert} #>
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1847
  Code.add_undefined @{const_name undefined}
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1848
\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1849
54890
cb892d835803 fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents: 54742
diff changeset
  1850
declare [[code abort: undefined]]
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1851
38972
cd747b068311 tuned text segment
haftmann
parents: 38944
diff changeset
  1852
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1853
subsubsection \<open>Generic code generator target languages\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1854
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1855
text \<open>type @{typ bool}\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1856
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1857
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
  1858
  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
  1859
    (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
  1860
| 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
  1861
    (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
  1862
| constant False \<rightharpoonup>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1863
    (SML) "false" and (OCaml) "false" and (Haskell) "False" and (Scala) "false"
34294
19c1fd52d6c9 a primitive scala serializer
haftmann
parents: 34209
diff changeset
  1864
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1865
code_reserved SML
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1866
  bool true false
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1867
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1868
code_reserved OCaml
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1869
  bool
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1870
34294
19c1fd52d6c9 a primitive scala serializer
haftmann
parents: 34209
diff changeset
  1871
code_reserved Scala
19c1fd52d6c9 a primitive scala serializer
haftmann
parents: 34209
diff changeset
  1872
  Boolean
19c1fd52d6c9 a primitive scala serializer
haftmann
parents: 34209
diff changeset
  1873
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1874
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
  1875
  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
  1876
    (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
  1877
| 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
  1878
    (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
  1879
| 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
  1880
    (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
  1881
| 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
  1882
    (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
  1883
    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
  1884
    and (Haskell) "!(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
  1885
    and (Scala) "!(if ((_))/ (_)/ 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
  1886
| 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
  1887
    (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
  1888
    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
  1889
    and (Haskell) "!(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
  1890
    and (Scala) "!(if ((_))/ (_)/ else (_))"
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1891
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1892
code_reserved SML
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1893
  not
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1894
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1895
code_reserved OCaml
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1896
  not
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1897
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1898
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
  1899
  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
  1900
    (SML) HOL and (OCaml) HOL and (Haskell) HOL and (Scala) HOL
39026
962d12bc546c avoid cyclic modules
haftmann
parents: 38972
diff changeset
  1901
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1902
text \<open>using built-in Haskell equality\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1903
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1904
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
  1905
  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
  1906
| 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
  1907
| constant HOL.eq \<rightharpoonup> (Haskell) infix 4 "=="
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1908
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1909
text \<open>undefined\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1910
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52432
diff changeset
  1911
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
  1912
  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
  1913
    (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
  1914
    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
  1915
    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
  1916
    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
  1917
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1918
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1919
subsubsection \<open>Evaluation and normalization by evaluation\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1920
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1921
method_setup eval = \<open>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1922
  let
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1923
    fun eval_tac ctxt =
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1924
      let val conv = Code_Runtime.dynamic_holds_conv ctxt
58839
ccda99401bc8 eliminated aliases;
wenzelm
parents: 58830
diff changeset
  1925
      in
ccda99401bc8 eliminated aliases;
wenzelm
parents: 58830
diff changeset
  1926
        CONVERSION (Conv.params_conv ~1 (K (Conv.concl_conv ~1 conv)) ctxt) THEN'
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59028
diff changeset
  1927
        resolve_tac ctxt [TrueI]
58839
ccda99401bc8 eliminated aliases;
wenzelm
parents: 58830
diff changeset
  1928
      end
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1929
  in
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1930
    Scan.succeed (SIMPLE_METHOD' o eval_tac)
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1931
  end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1932
\<close> "solve goal by evaluation"
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1933
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1934
method_setup normalization = \<open>
46190
a42c5f23109f more conventional eval_tac vs. method_setup "eval";
wenzelm
parents: 46161
diff changeset
  1935
  Scan.succeed (fn ctxt =>
a42c5f23109f more conventional eval_tac vs. method_setup "eval";
wenzelm
parents: 46161
diff changeset
  1936
    SIMPLE_METHOD'
a42c5f23109f more conventional eval_tac vs. method_setup "eval";
wenzelm
parents: 46161
diff changeset
  1937
      (CHANGED_PROP o
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55632
diff changeset
  1938
        (CONVERSION (Nbe.dynamic_conv ctxt)
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59028
diff changeset
  1939
          THEN_ALL_NEW (TRY o resolve_tac ctxt [TrueI]))))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1940
\<close> "solve goal by normalization"
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1941
31902
862ae16a799d renamed NamedThmsFun to Named_Thms;
wenzelm
parents: 31804
diff changeset
  1942
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1943
subsection \<open>Counterexample Search Units\<close>
33084
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1944
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1945
subsubsection \<open>Quickcheck\<close>
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1946
33084
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1947
quickcheck_params [size = 5, iterations = 50]
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1948
30929
d9343c0aac11 code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents: 30927
diff changeset
  1949
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1950
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
  1951
59028
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1952
named_theorems nitpick_unfold "alternative definitions of constants as needed by Nitpick"
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1953
  and nitpick_simp "equational specification of constants as needed by Nitpick"
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1954
  and nitpick_psimp "partial equational specification of constants as needed by Nitpick"
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1955
  and nitpick_choice_spec "choice specification of constants as needed by Nitpick"
30980
fe0855471964 misc cleanup of auto_solve and quickcheck:
wenzelm
parents: 30970
diff changeset
  1956
41792
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41636
diff changeset
  1957
declare if_bool_eq_conj [nitpick_unfold, no_atp]
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41636
diff changeset
  1958
        if_bool_eq_disj [no_atp]
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41636
diff changeset
  1959
29863
dadad1831e9d Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
blanchet
parents: 29608
diff changeset
  1960
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1961
subsection \<open>Preprocessing for the predicate compiler\<close>
33084
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1962
59028
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1963
named_theorems code_pred_def "alternative definitions of constants for the Predicate Compiler"
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1964
  and code_pred_inline "inlining definitions for the Predicate Compiler"
df7476e79558 named_theorems: multiple args;
wenzelm
parents: 58963
diff changeset
  1965
  and code_pred_simp "simplification rules for the optimisations in the Predicate Compiler"
33084
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1966
cd1579e0997a turned off old quickcheck
haftmann
parents: 33056
diff changeset
  1967
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1968
subsection \<open>Legacy tactics and ML bindings\<close>
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1969
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1970
ML \<open>
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1971
  (* combination of (spec RS spec RS ...(j times) ... spec RS mp) *)
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1972
  local
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1973
    fun wrong_prem (Const (@{const_name All}, _) $ Abs (_, _, t)) = wrong_prem t
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1974
      | wrong_prem (Bound _) = true
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1975
      | wrong_prem _ = false;
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1976
    val filter_right = filter (not o wrong_prem o HOLogic.dest_Trueprop o hd o Thm.prems_of);
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1977
  in
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1978
    fun smp i = funpow i (fn m => filter_right ([spec] RL m)) ([mp]);
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59028
diff changeset
  1979
    fun smp_tac ctxt j = EVERY' [dresolve_tac ctxt (smp j), assume_tac ctxt];
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1980
  end;
22839
ede26eb5e549 dropped HOL.ML
haftmann
parents: 22744
diff changeset
  1981
58826
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1982
  local
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1983
    val nnf_ss =
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1984
      simpset_of (put_simpset HOL_basic_ss @{context} addsimps @{thms simp_thms nnf_simps});
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1985
  in
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1986
    fun nnf_conv ctxt = Simplifier.rewrite (put_simpset nnf_ss ctxt);
2ed2eaabe3df modernized setup;
wenzelm
parents: 58775
diff changeset
  1987
  end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60183
diff changeset
  1988
\<close>
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1989
38866
8ffb9f541285 hide all-too-popular constant name eq
haftmann
parents: 38864
diff changeset
  1990
hide_const (open) eq equal
8ffb9f541285 hide all-too-popular constant name eq
haftmann
parents: 38864
diff changeset
  1991
14357
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1992
end