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