src/HOL/HOL.thy
author haftmann
Fri, 16 Jan 2009 08:29:11 +0100
changeset 29505 c6d2d23909d1
parent 29105 8f38bf68d42e
child 29608 564ea783ace8
permissions -rw-r--r--
added HOL-Base image
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/HOL.thy
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     2
    Author:     Tobias Nipkow, Markus Wenzel, and Larry Paulson
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     3
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     5
header {* The basis of Higher-Order Logic *}
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15103
diff changeset
     7
theory HOL
26957
e3f04fdd994d eliminated theory CPure;
wenzelm
parents: 26747
diff changeset
     8
imports Pure
23163
eef345eff987 proper loading of ML files;
wenzelm
parents: 23037
diff changeset
     9
uses
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28856
diff changeset
    10
  ("Tools/hologic.ML")
23171
861f63a35d31 moved IsaPlanner from Provers to Tools;
wenzelm
parents: 23163
diff changeset
    11
  "~~/src/Tools/IsaPlanner/zipper.ML"
861f63a35d31 moved IsaPlanner from Provers to Tools;
wenzelm
parents: 23163
diff changeset
    12
  "~~/src/Tools/IsaPlanner/isand.ML"
861f63a35d31 moved IsaPlanner from Provers to Tools;
wenzelm
parents: 23163
diff changeset
    13
  "~~/src/Tools/IsaPlanner/rw_tools.ML"
861f63a35d31 moved IsaPlanner from Provers to Tools;
wenzelm
parents: 23163
diff changeset
    14
  "~~/src/Tools/IsaPlanner/rw_inst.ML"
23263
0c227412b285 tuned boostrap
haftmann
parents: 23247
diff changeset
    15
  "~~/src/Provers/project_rule.ML"
0c227412b285 tuned boostrap
haftmann
parents: 23247
diff changeset
    16
  "~~/src/Provers/hypsubst.ML"
0c227412b285 tuned boostrap
haftmann
parents: 23247
diff changeset
    17
  "~~/src/Provers/splitter.ML"
23163
eef345eff987 proper loading of ML files;
wenzelm
parents: 23037
diff changeset
    18
  "~~/src/Provers/classical.ML"
eef345eff987 proper loading of ML files;
wenzelm
parents: 23037
diff changeset
    19
  "~~/src/Provers/blast.ML"
eef345eff987 proper loading of ML files;
wenzelm
parents: 23037
diff changeset
    20
  "~~/src/Provers/clasimp.ML"
28325
0b6b83ec8458 Added setup for coherent logic prover.
berghofe
parents: 28227
diff changeset
    21
  "~~/src/Provers/coherent.ML"
23263
0c227412b285 tuned boostrap
haftmann
parents: 23247
diff changeset
    22
  "~~/src/Provers/eqsubst.ML"
23163
eef345eff987 proper loading of ML files;
wenzelm
parents: 23037
diff changeset
    23
  "~~/src/Provers/quantifier1.ML"
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28856
diff changeset
    24
  ("Tools/simpdata.ML")
25741
2d102ddaca8b use random_word.ML earlier;
wenzelm
parents: 25534
diff changeset
    25
  "~~/src/Tools/random_word.ML"
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
    26
  "~~/src/Tools/atomize_elim.ML"
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24844
diff changeset
    27
  "~~/src/Tools/induct.ML"
27326
d3beec370964 moved src/HOL/Tools/induct_tacs.ML to src/Tools/induct_tacs.ML;
wenzelm
parents: 27212
diff changeset
    28
  ("~~/src/Tools/induct_tacs.ML")
29105
8f38bf68d42e moved value.ML to src/Tools
haftmann
parents: 28952
diff changeset
    29
  "~~/src/Tools/value.ML"
24280
c9867bdf2424 updated code generator setup
haftmann
parents: 24219
diff changeset
    30
  "~~/src/Tools/code/code_name.ML"
c9867bdf2424 updated code generator setup
haftmann
parents: 24219
diff changeset
    31
  "~~/src/Tools/code/code_funcgr.ML"
c9867bdf2424 updated code generator setup
haftmann
parents: 24219
diff changeset
    32
  "~~/src/Tools/code/code_thingol.ML"
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28012
diff changeset
    33
  "~~/src/Tools/code/code_printer.ML"
24280
c9867bdf2424 updated code generator setup
haftmann
parents: 24219
diff changeset
    34
  "~~/src/Tools/code/code_target.ML"
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28012
diff changeset
    35
  "~~/src/Tools/code/code_ml.ML"
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 28012
diff changeset
    36
  "~~/src/Tools/code/code_haskell.ML"
24166
7b28dc69bdbb new nbe implementation
haftmann
parents: 24035
diff changeset
    37
  "~~/src/Tools/nbe.ML"
29505
c6d2d23909d1 added HOL-Base image
haftmann
parents: 29105
diff changeset
    38
  ("Tools/recfun_codegen.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15103
diff changeset
    39
begin
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    40
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    41
subsection {* Primitive logic *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    42
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    43
subsubsection {* Core syntax *}
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    44
14854
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14749
diff changeset
    45
classes type
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
    46
defaultsort type
25494
b2484a7912ac replaced typedecl interpretation by ObjectLogic.typedecl (based on base_sort);
wenzelm
parents: 25460
diff changeset
    47
setup {* ObjectLogic.add_base_sort @{sort type} *}
25460
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    48
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    49
arities
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    50
  "fun" :: (type, type) type
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    51
  itself :: (type) type
b80087af2274 interpretation of typedecls: instantiation to class type
haftmann
parents: 25388
diff changeset
    52
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
    53
global
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    55
typedecl bool
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    57
judgment
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    58
  Trueprop      :: "bool => prop"                   ("(_)" 5)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    60
consts
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    61
  Not           :: "bool => bool"                   ("~ _" [40] 40)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    62
  True          :: bool
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    63
  False         :: bool
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
    65
  The           :: "('a => bool) => 'a"
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    66
  All           :: "('a => bool) => bool"           (binder "ALL " 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    67
  Ex            :: "('a => bool) => bool"           (binder "EX " 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    68
  Ex1           :: "('a => bool) => bool"           (binder "EX! " 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    69
  Let           :: "['a, 'a => 'b] => 'b"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
22839
ede26eb5e549 dropped HOL.ML
haftmann
parents: 22744
diff changeset
    71
  "op ="        :: "['a, 'a] => bool"               (infixl "=" 50)
ede26eb5e549 dropped HOL.ML
haftmann
parents: 22744
diff changeset
    72
  "op &"        :: "[bool, bool] => bool"           (infixr "&" 35)
ede26eb5e549 dropped HOL.ML
haftmann
parents: 22744
diff changeset
    73
  "op |"        :: "[bool, bool] => bool"           (infixr "|" 30)
ede26eb5e549 dropped HOL.ML
haftmann
parents: 22744
diff changeset
    74
  "op -->"      :: "[bool, bool] => bool"           (infixr "-->" 25)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
    76
local
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
    77
16587
b34c8aa657a5 Constant "If" is now local
paulson
parents: 16417
diff changeset
    78
consts
b34c8aa657a5 Constant "If" is now local
paulson
parents: 16417
diff changeset
    79
  If            :: "[bool, 'a, 'a] => 'a"           ("(if (_)/ then (_)/ else (_))" 10)
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    80
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    81
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    82
subsubsection {* Additional concrete syntax *}
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    83
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
    84
notation (output)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    85
  "op ="  (infix "=" 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    86
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    87
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
    88
  not_equal :: "['a, 'a] => bool"  (infixl "~=" 50) where
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    89
  "x ~= y == ~ (x = y)"
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 (output)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    92
  not_equal  (infix "~=" 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    93
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
    94
notation (xsymbols)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
    95
  Not  ("\<not> _" [40] 40) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
    96
  "op &"  (infixr "\<and>" 35) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
    97
  "op |"  (infixr "\<or>" 30) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
    98
  "op -->"  (infixr "\<longrightarrow>" 25) and
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
    99
  not_equal  (infix "\<noteq>" 50)
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 (HTML output)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
   102
  Not  ("\<not> _" [40] 40) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
   103
  "op &"  (infixr "\<and>" 35) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
   104
  "op |"  (infixr "\<or>" 30) and
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   105
  not_equal  (infix "\<noteq>" 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   106
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   107
abbreviation (iff)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21250
diff changeset
   108
  iff :: "[bool, bool] => bool"  (infixr "<->" 25) where
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   109
  "A <-> B == A = B"
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   110
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 21179
diff changeset
   111
notation (xsymbols)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   112
  iff  (infixr "\<longleftrightarrow>" 25)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   113
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   114
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   115
nonterminals
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
  letbinds  letbind
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
  case_syn  cases_syn
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
syntax
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
   120
  "_The"        :: "[pttrn, bool] => 'a"                 ("(3THE _./ _)" [0, 10] 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   122
  "_bind"       :: "[pttrn, 'a] => letbind"              ("(2_ =/ _)" 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   123
  ""            :: "letbind => letbinds"                 ("_")
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   124
  "_binds"      :: "[letbind, letbinds] => letbinds"     ("_;/ _")
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   125
  "_Let"        :: "[letbinds, 'a] => 'a"                ("(let (_)/ in (_))" 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
9060
b0dd884b1848 rename @case to _case_syntax (improves on low-level errors);
wenzelm
parents: 8959
diff changeset
   127
  "_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
   128
  "_case1"      :: "['a, 'b] => case_syn"                ("(2_ =>/ _)" 10)
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   129
  ""            :: "case_syn => cases_syn"               ("_")
9060
b0dd884b1848 rename @case to _case_syntax (improves on low-level errors);
wenzelm
parents: 8959
diff changeset
   130
  "_case2"      :: "[case_syn, cases_syn] => cases_syn"  ("_/ | _")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
translations
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13763
diff changeset
   133
  "THE x. P"              == "The (%x. P)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
  "_Let (_binds b bs) e"  == "_Let b (_Let bs e)"
1114
c8dfb56a7e95 Prod is now a parent of Lfp.
nipkow
parents: 1068
diff changeset
   135
  "let x = a in e"        == "Let a (%x. e)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   137
print_translation {*
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   138
(* To avoid eta-contraction of body: *)
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   139
[("The", fn [Abs abs] =>
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   140
     let val (x,t) = atomic_abs_tr' abs
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   141
     in Syntax.const "_The" $ x $ t end)]
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   142
*}
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
   143
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
   144
syntax (xsymbols)
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
   145
  "_case1"      :: "['a, 'b] => case_syn"                ("(2_ \<Rightarrow>/ _)" 10)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   146
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   147
notation (xsymbols)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   148
  All  (binder "\<forall>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   149
  Ex  (binder "\<exists>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   150
  Ex1  (binder "\<exists>!" 10)
2372
a2999e19703b fixed alternative quantifier symbol syntax;
wenzelm
parents: 2368
diff changeset
   151
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   152
notation (HTML output)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   153
  All  (binder "\<forall>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   154
  Ex  (binder "\<exists>" 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   155
  Ex1  (binder "\<exists>!" 10)
6340
7d5cbd5819a0 HTML output;
wenzelm
parents: 6289
diff changeset
   156
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   157
notation (HOL)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   158
  All  (binder "! " 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   159
  Ex  (binder "? " 10) and
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   160
  Ex1  (binder "?! " 10)
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   161
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   162
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   163
subsubsection {* Axioms and basic definitions *}
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
   164
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   165
axioms
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   166
  refl:           "t = (t::'a)"
28513
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   167
  subst:          "s = t \<Longrightarrow> P s \<Longrightarrow> P t"
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   168
  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
   169
    -- {*Extensionality is built into the meta-logic, and this rule expresses
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   170
         a related property.  It is an eta-expanded version of the traditional
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   171
         rule, and similar to the ABS rule of HOL*}
6289
062aa156a300 added a commment on the "ext" rule
paulson
parents: 6027
diff changeset
   172
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
   173
  the_eq_trivial: "(THE x. x = a) = (a::'a)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
15380
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   175
  impI:           "(P ==> Q) ==> P-->Q"
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   176
  mp:             "[| P-->Q;  P |] ==> Q"
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   177
455cfa766dad proof of subst by S Merz
paulson
parents: 15363
diff changeset
   178
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
defs
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   180
  True_def:     "True      == ((%x::bool. x) = (%x. x))"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   181
  All_def:      "All(P)    == (P = (%x. True))"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11438
diff changeset
   182
  Ex_def:       "Ex(P)     == !Q. (!x. P x --> Q) --> Q"
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   183
  False_def:    "False     == (!P. P)"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   184
  not_def:      "~ P       == P-->False"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   185
  and_def:      "P & Q     == !R. (P-->Q-->R) --> R"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   186
  or_def:       "P | Q     == !R. (P-->R) --> (Q-->R) --> R"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   187
  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
   188
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   189
axioms
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   190
  iff:          "(P-->Q) --> (Q-->P) --> (P=Q)"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   191
  True_or_False:  "(P=True) | (P=False)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
defs
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24166
diff changeset
   194
  Let_def:      "Let s f == f(s)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11438
diff changeset
   195
  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
   196
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   197
finalconsts
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   198
  "op ="
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   199
  "op -->"
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   200
  The
22481
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   201
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   202
axiomatization
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   203
  undefined :: 'a
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   204
28682
5de9fc98ad96 "arbitrary" merely abbreviates undefined
haftmann
parents: 28663
diff changeset
   205
abbreviation (input)
5de9fc98ad96 "arbitrary" merely abbreviates undefined
haftmann
parents: 28663
diff changeset
   206
  "arbitrary \<equiv> undefined"
3320
3a5e4930fb77 Added `arbitrary'
nipkow
parents: 3248
diff changeset
   207
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19607
diff changeset
   208
22481
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   209
subsubsection {* Generic classes and algebraic operations *}
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   210
79c2724c36b5 added class "default" and expansion axioms for undefined
haftmann
parents: 22473
diff changeset
   211
class default = type +
24901
d3cbf79769b9 added first version of user-space type system for class target
haftmann
parents: 24844
diff changeset
   212
  fixes default :: 'a
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   213
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   214
class zero = type + 
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   215
  fixes zero :: 'a  ("0")
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20698
diff changeset
   216
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   217
class one = type +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   218
  fixes one  :: 'a  ("1")
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20698
diff changeset
   219
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20698
diff changeset
   220
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
   221
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   222
class plus = type +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   223
  fixes plus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "+" 65)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   224
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   225
class minus = type +
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25741
diff changeset
   226
  fixes minus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "-" 65)
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25741
diff changeset
   227
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25741
diff changeset
   228
class uminus = type +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   229
  fixes uminus :: "'a \<Rightarrow> 'a"  ("- _" [81] 80)
20590
bf92900995f8 introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
haftmann
parents: 20453
diff changeset
   230
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   231
class times = type +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   232
  fixes times :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "*" 70)
20590
bf92900995f8 introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
haftmann
parents: 20453
diff changeset
   233
22473
753123c89d72 explizit "type" superclass
haftmann
parents: 22467
diff changeset
   234
class inverse = type +
20590
bf92900995f8 introduced syntactic classes; moved some setup to Pure/codegen, Pure/nbe or OperationalEquality.thy
haftmann
parents: 20453
diff changeset
   235
  fixes inverse :: "'a \<Rightarrow> 'a"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   236
    and divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "'/" 70)
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   237
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   238
class abs = type +
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   239
  fixes abs :: "'a \<Rightarrow> 'a"
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   240
begin
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   241
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   242
notation (xsymbols)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   243
  abs  ("\<bar>_\<bar>")
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   244
21524
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   245
notation (HTML output)
7843e2fd14a9 updated (binder) syntax/notation;
wenzelm
parents: 21504
diff changeset
   246
  abs  ("\<bar>_\<bar>")
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   247
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   248
end
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   249
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   250
class sgn = type +
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   251
  fixes sgn :: "'a \<Rightarrow> 'a"
af5ef0d4d655 global class syntax
haftmann
parents: 24901
diff changeset
   252
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   253
class ord = type +
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24633
diff changeset
   254
  fixes less_eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24633
diff changeset
   255
    and less :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   256
begin
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   257
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   258
notation
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   259
  less_eq  ("op <=") and
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   260
  less_eq  ("(_/ <= _)" [51, 51] 50) and
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   261
  less  ("op <") and
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   262
  less  ("(_/ < _)"  [51, 51] 50)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   263
  
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   264
notation (xsymbols)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   265
  less_eq  ("op \<le>") and
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   266
  less_eq  ("(_/ \<le> _)"  [51, 51] 50)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   267
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   268
notation (HTML output)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   269
  less_eq  ("op \<le>") and
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   270
  less_eq  ("(_/ \<le> _)"  [51, 51] 50)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   271
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   272
abbreviation (input)
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   273
  greater_eq  (infix ">=" 50) where
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   274
  "x >= y \<equiv> y <= x"
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   275
24842
2bdf31a97362 clarified declarations in class ord
haftmann
parents: 24830
diff changeset
   276
notation (input)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   277
  greater_eq  (infix "\<ge>" 50)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23566
diff changeset
   278
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   279
abbreviation (input)
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   280
  greater  (infix ">" 50) where
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   281
  "x > y \<equiv> y < x"
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   282
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   283
end
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   284
13456
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   285
syntax
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   286
  "_index1"  :: index    ("\<^sub>1")
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   287
translations
14690
f61ea8bfa81e _index1: accomodate improved indexed syntax;
wenzelm
parents: 14590
diff changeset
   288
  (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
   289
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   290
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
   291
let
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20698
diff changeset
   292
  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
   293
    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
   294
    else Syntax.const Syntax.constrainC $ Syntax.const c $ Syntax.term_of_typ show_sorts T);
22993
haftmann
parents: 22839
diff changeset
   295
in map tr' [@{const_syntax HOL.one}, @{const_syntax HOL.zero}] end;
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   296
*} -- {* show types that are presumably too general *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   297
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   298
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   299
subsection {* Fundamental rules *}
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   300
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
   301
subsubsection {* Equality *}
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   302
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   303
lemma sym: "s = t ==> t = s"
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   304
  by (erule subst) (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   305
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   306
lemma ssubst: "t = s ==> P s ==> P t"
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   307
  by (drule sym) (erule subst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   308
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   309
lemma trans: "[| r=s; s=t |] ==> r=t"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   310
  by (erule subst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   311
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   312
lemma meta_eq_to_obj_eq: 
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   313
  assumes meq: "A == B"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   314
  shows "A = B"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   315
  by (unfold meq) (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   316
21502
7f3ea2b3bab6 prefer antiquotations over LaTeX macros;
wenzelm
parents: 21486
diff changeset
   317
text {* Useful with @{text erule} for proving equalities from known equalities. *}
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   318
     (* a = b
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   319
        |   |
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   320
        c = d   *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   321
lemma box_equals: "[| a=b;  a=c;  b=d |] ==> c=d"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   322
apply (rule trans)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   323
apply (rule trans)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   324
apply (rule sym)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   325
apply assumption+
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   326
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   327
15524
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   328
text {* For calculational reasoning: *}
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   329
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   330
lemma forw_subst: "a = b ==> P b ==> P a"
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   331
  by (rule ssubst)
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   332
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   333
lemma back_subst: "P a ==> a = b ==> P b"
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   334
  by (rule subst)
2ef571f80a55 Moved oderings from HOL into the new Orderings.thy
nipkow
parents: 15481
diff changeset
   335
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   336
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   337
subsubsection {*Congruence rules for application*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   338
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   339
(*similar to AP_THM in Gordon's HOL*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   340
lemma fun_cong: "(f::'a=>'b) = g ==> f(x)=g(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   341
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   342
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   343
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   344
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   345
(*similar to AP_TERM in Gordon's HOL and FOL's subst_context*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   346
lemma arg_cong: "x=y ==> f(x)=f(y)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   347
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   348
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   349
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   350
15655
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   351
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
   352
apply (erule ssubst)+
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   353
apply (rule refl)
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   354
done
157f3988f775 arg_cong2 by Norbert Voelker
paulson
parents: 15570
diff changeset
   355
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   356
lemma cong: "[| f = g; (x::'a) = y |] ==> f(x) = g(y)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   357
apply (erule subst)+
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   358
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   359
done
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 {*Equality of booleans -- iff*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   363
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   364
lemma iffI: assumes "P ==> Q" and "Q ==> P" shows "P=Q"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   365
  by (iprover intro: iff [THEN mp, THEN mp] impI 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 iffD2: "[| P=Q; Q |] ==> P"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   368
  by (erule ssubst)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   369
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   370
lemma rev_iffD2: "[| Q; P=Q |] ==> P"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   371
  by (erule iffD2)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   372
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   373
lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   374
  by (drule sym) (rule iffD2)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   375
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   376
lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   377
  by (drule sym) (rule rev_iffD2)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   378
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   379
lemma iffE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   380
  assumes major: "P=Q"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   381
    and minor: "[| P --> Q; Q --> P |] ==> R"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   382
  shows R
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   383
  by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   384
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   385
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   386
subsubsection {*True*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   387
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   388
lemma TrueI: "True"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   389
  unfolding True_def by (rule refl)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   390
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   391
lemma eqTrueI: "P ==> P = True"
18457
356a9f711899 structure ProjectRule;
wenzelm
parents: 17992
diff changeset
   392
  by (iprover intro: iffI TrueI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   393
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   394
lemma eqTrueE: "P = True ==> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   395
  by (erule iffD2) (rule TrueI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   396
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   397
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   398
subsubsection {*Universal quantifier*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   399
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   400
lemma allI: assumes "!!x::'a. P(x)" shows "ALL x. P(x)"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   401
  unfolding All_def by (iprover intro: ext eqTrueI assms)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   402
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   403
lemma spec: "ALL x::'a. P(x) ==> P(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   404
apply (unfold All_def)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   405
apply (rule eqTrueE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   406
apply (erule fun_cong)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   407
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   408
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   409
lemma allE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   410
  assumes major: "ALL x. P(x)"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   411
    and minor: "P(x) ==> R"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   412
  shows R
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   413
  by (iprover intro: minor major [THEN spec])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   414
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   415
lemma all_dupE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   416
  assumes major: "ALL x. P(x)"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   417
    and minor: "[| P(x); ALL x. P(x) |] ==> R"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   418
  shows R
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   419
  by (iprover intro: minor major major [THEN spec])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   420
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   421
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   422
subsubsection {* False *}
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   423
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   424
text {*
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   425
  Depends upon @{text spec}; it is impossible to do propositional
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   426
  logic before quantifiers!
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   427
*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   428
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   429
lemma FalseE: "False ==> P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   430
  apply (unfold False_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   431
  apply (erule spec)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   432
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   433
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   434
lemma False_neq_True: "False = True ==> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   435
  by (erule eqTrueE [THEN FalseE])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   436
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   437
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   438
subsubsection {* Negation *}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   439
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   440
lemma notI:
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   441
  assumes "P ==> False"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   442
  shows "~P"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   443
  apply (unfold not_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   444
  apply (iprover intro: impI assms)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   445
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   446
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   447
lemma False_not_True: "False ~= True"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   448
  apply (rule notI)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   449
  apply (erule False_neq_True)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   450
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   451
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   452
lemma True_not_False: "True ~= False"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   453
  apply (rule notI)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   454
  apply (drule sym)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   455
  apply (erule False_neq_True)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   456
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   457
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   458
lemma notE: "[| ~P;  P |] ==> R"
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   459
  apply (unfold not_def)
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   460
  apply (erule mp [THEN FalseE])
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   461
  apply assumption
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   462
  done
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   463
21504
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   464
lemma notI2: "(P \<Longrightarrow> \<not> Pa) \<Longrightarrow> (P \<Longrightarrow> Pa) \<Longrightarrow> \<not> P"
9c97af4a1567 tuned proofs;
wenzelm
parents: 21502
diff changeset
   465
  by (erule notE [THEN notI]) (erule meta_mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   466
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   467
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   468
subsubsection {*Implication*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   469
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   470
lemma impE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   471
  assumes "P-->Q" "P" "Q ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   472
  shows "R"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   473
by (iprover intro: assms mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   474
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   475
(* Reduces Q to P-->Q, allowing substitution in P. *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   476
lemma rev_mp: "[| P;  P --> Q |] ==> Q"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   477
by (iprover intro: mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   478
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   479
lemma contrapos_nn:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   480
  assumes major: "~Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   481
      and minor: "P==>Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   482
  shows "~P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   483
by (iprover intro: notI minor major [THEN notE])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   484
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   485
(*not used at all, but we already have the other 3 combinations *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   486
lemma contrapos_pn:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   487
  assumes major: "Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   488
      and minor: "P ==> ~Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   489
  shows "~P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   490
by (iprover intro: notI minor major notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   491
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   492
lemma not_sym: "t ~= s ==> s ~= t"
21250
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   493
  by (erule contrapos_nn) (erule sym)
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   494
a268f6288fb6 moved lemma eq_neq_eq_imp_neq to HOL
haftmann
parents: 21218
diff changeset
   495
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
   496
  by (erule subst, erule ssubst, assumption)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   497
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   498
(*still used in HOLCF*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   499
lemma rev_contrapos:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   500
  assumes pq: "P ==> Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   501
      and nq: "~Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   502
  shows "~P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   503
apply (rule nq [THEN contrapos_nn])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   504
apply (erule pq)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   505
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   506
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   507
subsubsection {*Existential quantifier*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   508
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   509
lemma exI: "P x ==> EX x::'a. P x"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   510
apply (unfold Ex_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   511
apply (iprover intro: allI allE impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   512
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   513
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   514
lemma exE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   515
  assumes major: "EX x::'a. P(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   516
      and minor: "!!x. P(x) ==> Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   517
  shows "Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   518
apply (rule major [unfolded Ex_def, THEN spec, THEN mp])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   519
apply (iprover intro: impI [THEN allI] minor)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   520
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   521
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   522
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   523
subsubsection {*Conjunction*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   524
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   525
lemma conjI: "[| P; Q |] ==> P&Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   526
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   527
apply (iprover intro: impI [THEN allI] 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 conjunct1: "[| P & Q |] ==> P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   531
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   532
apply (iprover intro: impI dest: spec mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   533
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   534
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   535
lemma conjunct2: "[| P & Q |] ==> Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   536
apply (unfold and_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   537
apply (iprover intro: impI dest: spec mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   538
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   539
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   540
lemma conjE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   541
  assumes major: "P&Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   542
      and minor: "[| P; Q |] ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   543
  shows "R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   544
apply (rule minor)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   545
apply (rule major [THEN conjunct1])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   546
apply (rule major [THEN conjunct2])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   547
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   548
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   549
lemma context_conjI:
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   550
  assumes "P" "P ==> Q" shows "P & Q"
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   551
by (iprover intro: conjI assms)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   552
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   553
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   554
subsubsection {*Disjunction*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   555
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   556
lemma disjI1: "P ==> P|Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   557
apply (unfold or_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   558
apply (iprover intro: allI impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   559
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   560
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   561
lemma disjI2: "Q ==> P|Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   562
apply (unfold or_def)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   563
apply (iprover intro: allI impI mp)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   564
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   565
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   566
lemma disjE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   567
  assumes major: "P|Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   568
      and minorP: "P ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   569
      and minorQ: "Q ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   570
  shows "R"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   571
by (iprover intro: minorP minorQ impI
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   572
                 major [unfolded or_def, THEN spec, THEN mp, THEN mp])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   573
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   574
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   575
subsubsection {*Classical logic*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   576
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   577
lemma classical:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   578
  assumes prem: "~P ==> P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   579
  shows "P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   580
apply (rule True_or_False [THEN disjE, THEN eqTrueE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   581
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   582
apply (rule notI [THEN prem, THEN eqTrueI])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   583
apply (erule subst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   584
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   585
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   586
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   587
lemmas ccontr = FalseE [THEN classical, standard]
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   588
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   589
(*notE with premises exchanged; it discharges ~R so that it can be used to
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   590
  make elimination rules*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   591
lemma rev_notE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   592
  assumes premp: "P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   593
      and premnot: "~R ==> ~P"
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 ccontr)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   596
apply (erule notE [OF premnot premp])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   597
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   598
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   599
(*Double negation law*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   600
lemma notnotD: "~~P ==> P"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   601
apply (rule classical)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   602
apply (erule notE)
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
lemma contrapos_pp:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   607
  assumes p1: "Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   608
      and p2: "~P ==> ~Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   609
  shows "P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   610
by (iprover intro: classical p1 p2 notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   611
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   612
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   613
subsubsection {*Unique existence*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   614
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   615
lemma ex1I:
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   616
  assumes "P a" "!!x. P(x) ==> x=a"
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   617
  shows "EX! x. P(x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   618
by (unfold Ex1_def, iprover intro: assms exI conjI allI impI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   619
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   620
text{*Sometimes easier to use: the premises have no shared variables.  Safe!*}
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   621
lemma ex_ex1I:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   622
  assumes ex_prem: "EX x. P(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   623
      and eq: "!!x y. [| P(x); P(y) |] ==> x=y"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   624
  shows "EX! x. P(x)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   625
by (iprover intro: ex_prem [THEN exE] ex1I eq)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   626
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   627
lemma ex1E:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   628
  assumes major: "EX! x. P(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   629
      and minor: "!!x. [| P(x);  ALL y. P(y) --> y=x |] ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   630
  shows "R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   631
apply (rule major [unfolded Ex1_def, THEN exE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   632
apply (erule conjE)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   633
apply (iprover intro: minor)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   634
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   635
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   636
lemma ex1_implies_ex: "EX! x. P x ==> EX x. P x"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   637
apply (erule ex1E)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   638
apply (rule exI)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   639
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   640
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   641
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   642
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   643
subsubsection {*THE: definite description operator*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   644
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   645
lemma the_equality:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   646
  assumes prema: "P a"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   647
      and premx: "!!x. P x ==> x=a"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   648
  shows "(THE x. P x) = a"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   649
apply (rule trans [OF _ the_eq_trivial])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   650
apply (rule_tac f = "The" in arg_cong)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   651
apply (rule ext)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   652
apply (rule iffI)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   653
 apply (erule premx)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   654
apply (erule ssubst, rule prema)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   655
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   656
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   657
lemma theI:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   658
  assumes "P a" and "!!x. P x ==> x=a"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   659
  shows "P (THE x. P x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   660
by (iprover intro: assms the_equality [THEN ssubst])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   661
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   662
lemma theI': "EX! x. P x ==> P (THE x. P x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   663
apply (erule ex1E)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   664
apply (erule theI)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   665
apply (erule allE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   666
apply (erule mp)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   667
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   668
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   669
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   670
(*Easier to apply than theI: only one occurrence of P*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   671
lemma theI2:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   672
  assumes "P a" "!!x. P x ==> x=a" "!!x. P x ==> Q x"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   673
  shows "Q (THE x. P x)"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   674
by (iprover intro: assms theI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   675
24553
9b19da7b2b08 added lemma
nipkow
parents: 24506
diff changeset
   676
lemma the1I2: assumes "EX! x. P x" "\<And>x. P x \<Longrightarrow> Q x" shows "Q (THE x. P x)"
9b19da7b2b08 added lemma
nipkow
parents: 24506
diff changeset
   677
by(iprover intro:assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)]
9b19da7b2b08 added lemma
nipkow
parents: 24506
diff changeset
   678
           elim:allE impE)
9b19da7b2b08 added lemma
nipkow
parents: 24506
diff changeset
   679
18697
86b3f73e3fd5 declare the1_equality [elim?];
wenzelm
parents: 18689
diff changeset
   680
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
   681
apply (rule the_equality)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   682
apply  assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   683
apply (erule ex1E)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   684
apply (erule all_dupE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   685
apply (drule mp)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   686
apply  assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   687
apply (erule ssubst)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   688
apply (erule allE)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   689
apply (erule mp)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   690
apply assumption
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   691
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   692
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   693
lemma the_sym_eq_trivial: "(THE y. x=y) = x"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   694
apply (rule the_equality)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   695
apply (rule refl)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   696
apply (erule sym)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   697
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   698
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   699
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   700
subsubsection {*Classical intro rules for disjunction and existential quantifiers*}
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   701
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   702
lemma disjCI:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   703
  assumes "~Q ==> P" shows "P|Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   704
apply (rule classical)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   705
apply (iprover intro: assms disjI1 disjI2 notI elim: notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   706
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   707
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   708
lemma excluded_middle: "~P | P"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   709
by (iprover intro: disjCI)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   710
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   711
text {*
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   712
  case distinction as a natural deduction rule.
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   713
  Note that @{term "~P"} is the second case, not the first
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   714
*}
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
   715
lemma case_split [case_names True False]:
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   716
  assumes prem1: "P ==> Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   717
      and prem2: "~P ==> Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   718
  shows "Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   719
apply (rule excluded_middle [THEN disjE])
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   720
apply (erule prem2)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   721
apply (erule prem1)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   722
done
27126
3ede9103de8e eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents: 27107
diff changeset
   723
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   724
(*Classical implies (-->) elimination. *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   725
lemma impCE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   726
  assumes major: "P-->Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   727
      and minor: "~P ==> R" "Q ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   728
  shows "R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   729
apply (rule excluded_middle [of P, THEN disjE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   730
apply (iprover intro: minor major [THEN mp])+
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   731
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   732
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   733
(*This version of --> elimination works on Q before P.  It works best for
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   734
  those cases in which P holds "almost everywhere".  Can't install as
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   735
  default: would break old proofs.*)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   736
lemma impCE':
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   737
  assumes major: "P-->Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   738
      and minor: "Q ==> R" "~P ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   739
  shows "R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   740
apply (rule excluded_middle [of P, THEN disjE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   741
apply (iprover intro: minor major [THEN mp])+
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   742
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   743
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   744
(*Classical <-> elimination. *)
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   745
lemma iffCE:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   746
  assumes major: "P=Q"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   747
      and minor: "[| P; Q |] ==> R"  "[| ~P; ~Q |] ==> R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   748
  shows "R"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   749
apply (rule major [THEN iffE])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17459
diff changeset
   750
apply (iprover intro: minor elim: impCE notE)
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   751
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   752
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   753
lemma exCI:
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   754
  assumes "ALL x. ~P(x) ==> P(a)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   755
  shows "EX x. P(x)"
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   756
apply (rule ccontr)
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   757
apply (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"])
15411
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   758
done
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   759
1d195de59497 removal of HOL_Lemmas
paulson
parents: 15380
diff changeset
   760
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   761
subsubsection {* Intuitionistic Reasoning *}
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   762
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   763
lemma impE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   764
  assumes 1: "P --> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   765
    and 2: "Q ==> R"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   766
    and 3: "P --> Q ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   767
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   768
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   769
  from 3 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   770
  with 1 have Q by (rule impE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   771
  with 2 show R .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   772
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   773
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   774
lemma allE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   775
  assumes 1: "ALL x. P x"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   776
    and 2: "P x ==> ALL x. P x ==> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   777
  shows Q
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   778
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   779
  from 1 have "P x" by (rule spec)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   780
  from this and 1 show Q by (rule 2)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   781
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   782
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   783
lemma notE':
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   784
  assumes 1: "~ P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   785
    and 2: "~ P ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   786
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   787
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   788
  from 2 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   789
  with 1 show R by (rule notE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   790
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   791
22444
fb80fedd192d added safe intro rules for removing "True" subgoals as well as "~ False" ones.
dixon
parents: 22377
diff changeset
   792
lemma TrueE: "True ==> P ==> P" .
fb80fedd192d added safe intro rules for removing "True" subgoals as well as "~ False" ones.
dixon
parents: 22377
diff changeset
   793
lemma notFalseE: "~ False ==> P ==> P" .
fb80fedd192d added safe intro rules for removing "True" subgoals as well as "~ False" ones.
dixon
parents: 22377
diff changeset
   794
22467
c9357ef01168 TrueElim and notTrueElim tested and added as safe elim rules.
dixon
parents: 22445
diff changeset
   795
lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   796
  and [Pure.intro!] = iffI conjI impI TrueI notI allI refl
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   797
  and [Pure.elim 2] = allE notE' impE'
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   798
  and [Pure.intro] = exI disjI2 disjI1
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   799
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   800
lemmas [trans] = trans
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   801
  and [sym] = sym not_sym
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15676
diff changeset
   802
  and [Pure.elim?] = iffD1 iffD2 impE
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   803
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28856
diff changeset
   804
use "Tools/hologic.ML"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   805
11438
3d9222b80989 declare trans [trans] (*overridden in theory Calculation*);
wenzelm
parents: 11432
diff changeset
   806
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   807
subsubsection {* Atomizing meta-level connectives *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   808
28513
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   809
axiomatization where
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   810
  eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" (*admissible axiom*)
b0b30fd6c264 re-introduces axiom subst
haftmann
parents: 28400
diff changeset
   811
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   812
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
   813
proof
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   814
  assume "!!x. P x"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23263
diff changeset
   815
  then show "ALL x. P x" ..
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   816
next
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   817
  assume "ALL x. P x"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   818
  then show "!!x. P x" by (rule allE)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   819
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   820
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   821
lemma atomize_imp [atomize]: "(A ==> B) == Trueprop (A --> B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   822
proof
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   823
  assume r: "A ==> B"
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   824
  show "A --> B" by (rule impI) (rule r)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   825
next
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   826
  assume "A --> B" and A
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   827
  then show B by (rule mp)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   828
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   829
14749
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   830
lemma atomize_not: "(A ==> False) == Trueprop (~A)"
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   831
proof
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   832
  assume r: "A ==> False"
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   833
  show "~A" by (rule notI) (rule r)
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   834
next
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   835
  assume "~A" and A
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   836
  then show False by (rule notE)
14749
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   837
qed
9ccfd0f59e11 new atomize theorem
paulson
parents: 14690
diff changeset
   838
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   839
lemma atomize_eq [atomize]: "(x == y) == Trueprop (x = y)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   840
proof
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   841
  assume "x == y"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   842
  show "x = y" by (unfold `x == y`) (rule refl)
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   843
next
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   844
  assume "x = y"
23553
af8ae54238f5 use hologic.ML in basic HOL context;
wenzelm
parents: 23530
diff changeset
   845
  then show "x == y" by (rule eq_reflection)
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   846
qed
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   847
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28741
diff changeset
   848
lemma atomize_conj [atomize]: "(A &&& B) == Trueprop (A & B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   849
proof
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28741
diff changeset
   850
  assume conj: "A &&& B"
19121
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   851
  show "A & B"
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   852
  proof (rule conjI)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   853
    from conj show A by (rule conjunctionD1)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   854
    from conj show B by (rule conjunctionD2)
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   855
  qed
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   856
next
19121
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   857
  assume conj: "A & B"
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28741
diff changeset
   858
  show "A &&& B"
19121
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   859
  proof -
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   860
    from conj show A ..
d7fd5415a781 simplified Pure conjunction;
wenzelm
parents: 19039
diff changeset
   861
    from conj show B ..
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   862
  qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   863
qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   864
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   865
lemmas [symmetric, rulify] = atomize_all atomize_imp
18832
6ab4de872a70 declare 'defn' rules;
wenzelm
parents: 18757
diff changeset
   866
  and [symmetric, defn] = atomize_all atomize_imp atomize_eq
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   867
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   868
26580
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   869
subsubsection {* Atomizing elimination rules *}
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   870
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   871
setup AtomizeElim.setup
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   872
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   873
lemma atomize_exL[atomize_elim]: "(!!x. P x ==> Q) == ((EX x. P x) ==> Q)"
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   874
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   875
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   876
lemma atomize_conjL[atomize_elim]: "(A ==> B ==> C) == (A & B ==> C)"
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   877
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   878
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   879
lemma atomize_disjL[atomize_elim]: "((A ==> C) ==> (B ==> C) ==> C) == ((A | B ==> C) ==> C)"
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   880
  by rule iprover+
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   881
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   882
lemma atomize_elimL[atomize_elim]: "(!!B. (A ==> B) ==> B) == Trueprop A" ..
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   883
c3e597a476fd Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents: 26555
diff changeset
   884
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   885
subsection {* Package setup *}
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   886
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   887
subsubsection {* Classical Reasoner setup *}
9529
d9434a9277a4 lemmas atomize = all_eq imp_eq;
wenzelm
parents: 9488
diff changeset
   888
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   889
lemma imp_elim: "P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R"
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   890
  by (rule classical) iprover
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   891
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   892
lemma swap: "~ P ==> (~ R ==> P) ==> R"
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   893
  by (rule classical) iprover
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   894
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   895
lemma thin_refl:
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   896
  "\<And>X. \<lbrakk> x=x; PROP W \<rbrakk> \<Longrightarrow> PROP W" .
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   897
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   898
ML {*
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   899
structure Hypsubst = HypsubstFun(
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   900
struct
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   901
  structure Simplifier = Simplifier
21218
38013c3a77a2 tuned hypsubst setup;
wenzelm
parents: 21210
diff changeset
   902
  val dest_eq = HOLogic.dest_eq
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   903
  val dest_Trueprop = HOLogic.dest_Trueprop
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   904
  val dest_imp = HOLogic.dest_imp
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   905
  val eq_reflection = @{thm eq_reflection}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   906
  val rev_eq_reflection = @{thm meta_eq_to_obj_eq}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   907
  val imp_intr = @{thm impI}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   908
  val rev_mp = @{thm rev_mp}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   909
  val subst = @{thm subst}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   910
  val sym = @{thm sym}
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   911
  val thin_refl = @{thm thin_refl};
27572
67cd6ed76446 single_hyp(_meta)_subst_tac: Controlled substitution of a single hyp
krauss
parents: 27338
diff changeset
   912
  val prop_subst = @{lemma "PROP P t ==> PROP prop (x = t ==> PROP P x)"
67cd6ed76446 single_hyp(_meta)_subst_tac: Controlled substitution of a single hyp
krauss
parents: 27338
diff changeset
   913
                     by (unfold prop_def) (drule eq_reflection, unfold)}
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   914
end);
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
   915
open Hypsubst;
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   916
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   917
structure Classical = ClassicalFun(
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   918
struct
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   919
  val imp_elim = @{thm imp_elim}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   920
  val not_elim = @{thm notE}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   921
  val swap = @{thm swap}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
   922
  val classical = @{thm classical}
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   923
  val sizef = Drule.size_of_thm
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   924
  val hyp_subst_tacs = [Hypsubst.hyp_subst_tac]
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   925
end);
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   926
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   927
structure BasicClassical: BASIC_CLASSICAL = Classical; 
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
   928
open BasicClassical;
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
   929
27338
2cd6c60cc10b ML_Antiquote.value;
wenzelm
parents: 27326
diff changeset
   930
ML_Antiquote.value "claset"
2cd6c60cc10b ML_Antiquote.value;
wenzelm
parents: 27326
diff changeset
   931
  (Scan.succeed "Classical.local_claset_of (ML_Context.the_local_context ())");
24035
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
   932
74c032aea9ed simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23948
diff changeset
   933
structure ResAtpset = NamedThmsFun(val name = "atp" val description = "ATP rules");
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
   934
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
   935
structure ResBlacklist = NamedThmsFun(val name = "noatp" val description = "Theorems blacklisted for ATP");
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   936
*}
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   937
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   938
text {*ResBlacklist holds theorems blacklisted to sledgehammer. 
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
   939
  These theorems typically produce clauses that are prolific (match too many equality or
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
   940
  membership literals) and relate to seldom-used facts. Some duplicate other rules.*}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
   941
21009
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   942
setup {*
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   943
let
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   944
  (*prevent substitution on bool*)
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   945
  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
   946
    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
   947
      (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
   948
in
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   949
  Hypsubst.hypsubst_setup
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   950
  #> ContextRules.addSWrapper (fn tac => hyp_subst_tac' ORELSE' tac)
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   951
  #> Classical.setup
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
   952
  #> ResAtpset.setup
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
   953
  #> ResBlacklist.setup
21009
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   954
end
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   955
*}
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   956
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   957
declare iffI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   958
  and notI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   959
  and impI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   960
  and disjCI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   961
  and conjI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   962
  and TrueI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   963
  and refl [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   964
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   965
declare iffCE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   966
  and FalseE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   967
  and impCE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   968
  and disjE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   969
  and conjE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   970
  and conjE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   971
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   972
declare ex_ex1I [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   973
  and allI [intro!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   974
  and the_equality [intro]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   975
  and exI [intro]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   976
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   977
declare exE [elim!]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   978
  allE [elim]
0eae3fb48936 lifted claset setup from ML to Isar level
haftmann
parents: 20973
diff changeset
   979
22377
61610b1beedf tuned ML setup;
wenzelm
parents: 22218
diff changeset
   980
ML {* val HOL_cs = @{claset} *}
19162
67436e2a16df Added setup for "atpset" (a rule set for ATPs).
mengj
parents: 19138
diff changeset
   981
20223
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   982
lemma contrapos_np: "~ Q ==> (~ P ==> Q) ==> P"
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   983
  apply (erule swap)
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   984
  apply (erule (1) meta_mp)
89d2758ecddf tuned proofs;
wenzelm
parents: 20172
diff changeset
   985
  done
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   986
18689
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   987
declare ex_ex1I [rule del, intro! 2]
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   988
  and ex1I [intro]
a50587cd8414 prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents: 18595
diff changeset
   989
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   990
lemmas [intro?] = ext
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   991
  and [elim?] = ex1_implies_ex
11977
2e7c54b86763 tuned declaration of rules;
wenzelm
parents: 11953
diff changeset
   992
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   993
(*Better then ex1E for classical reasoner: needs no quantifier duplication!*)
20973
0b8e436ed071 cleaned up HOL bootstrap
haftmann
parents: 20944
diff changeset
   994
lemma alt_ex1E [elim!]:
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   995
  assumes major: "\<exists>!x. P x"
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   996
      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
   997
  shows R
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   998
apply (rule ex1E [OF major])
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
   999
apply (rule prem)
22129
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1000
apply (tactic {* ares_tac @{thms allI} 1 *})+
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1001
apply (tactic {* etac (Classical.dup_elim @{thm allE}) 1 *})
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1002
apply iprover
bb2203c93316 tuned ML setup;
wenzelm
parents: 21671
diff changeset
  1003
done
20944
34b2c1bb7178 cleanup basic HOL bootstrap
haftmann
parents: 20833
diff changeset
  1004
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1005
ML {*
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
  1006
structure Blast = BlastFun
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
  1007
(
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1008
  type claset = Classical.claset
22744
5cbe966d67a2 Isar definitions are now added explicitly to code theorem table
haftmann
parents: 22481
diff changeset
  1009
  val equality_name = @{const_name "op ="}
22993
haftmann
parents: 22839
diff changeset
  1010
  val not_name = @{const_name Not}
26411
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
  1011
  val notE = @{thm notE}
cd74690f3bfb pass imp_elim, swap to classical prover;
wenzelm
parents: 25966
diff changeset
  1012
  val ccontr = @{thm ccontr}
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1013
  val contr_tac = Classical.contr_tac
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1014
  val dup_intr = Classical.dup_intr
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1015
  val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1016
  val claset = Classical.claset
21151
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1017
  val rep_cs = Classical.rep_cs
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1018
  val cla_modifiers = Classical.cla_modifiers
25bd46916c12 simplified reasoning tools setup
haftmann
parents: 21112
diff changeset
  1019
  val cla_meth' = Classical.cla_meth'
25388
5cd130251825 tuned specifications of 'notation';
wenzelm
parents: 25297
diff changeset
  1020
);
21671
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1021
val Blast_tac = Blast.Blast_tac;
f7d652ffef09 removed legacy ML bindings;
wenzelm
parents: 21547
diff changeset
  1022
val blast_tac = Blast.blast_tac;