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