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