src/FOL/IFOL.thy
author paulson
Wed, 31 Jul 2002 14:34:08 +0200
changeset 13435 05631e8f0258
parent 12937 0c4fd7529467
child 13779 2a34dc5cf79e
permissions -rw-r--r--
new theorem eq_commute
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1268
f6ef556b3ede corrected title
clasohm
parents: 928
diff changeset
     1
(*  Title:      FOL/IFOL.thy
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
     2
    ID:         $Id$
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
     3
    Author:     Lawrence C Paulson and Markus Wenzel
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
     4
*)
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
     5
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
     6
header {* Intuitionistic first-order logic *}
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
     7
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
     8
theory IFOL = Pure
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
     9
files ("IFOL_lemmas.ML") ("fologic.ML") ("hypsubstdata.ML") ("intprover.ML"):
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    10
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    12
subsection {* Syntax and axiomatic basis *}
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    13
3906
5ae0e1324c56 global;
wenzelm
parents: 3835
diff changeset
    14
global
5ae0e1324c56 global;
wenzelm
parents: 3835
diff changeset
    15
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    16
classes "term" < logic
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    17
defaultsort "term"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    18
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    19
typedecl o
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    20
11747
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
    21
judgment
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
    22
  Trueprop      :: "o => prop"                  ("(_)" 5)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
11747
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
    24
consts
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    25
  True          :: o
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    26
  False         :: o
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    27
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    28
  (* Connectives *)
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    29
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    30
  "="           :: "['a, 'a] => o"              (infixl 50)
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
    31
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    32
  Not           :: "o => o"                     ("~ _" [40] 40)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    33
  &             :: "[o, o] => o"                (infixr 35)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    34
  "|"           :: "[o, o] => o"                (infixr 30)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    35
  -->           :: "[o, o] => o"                (infixr 25)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    36
  <->           :: "[o, o] => o"                (infixr 25)
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    37
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    38
  (* Quantifiers *)
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    39
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    40
  All           :: "('a => o) => o"             (binder "ALL " 10)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    41
  Ex            :: "('a => o) => o"             (binder "EX " 10)
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    42
  Ex1           :: "('a => o) => o"             (binder "EX! " 10)
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    43
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
928
cb31a4e97f75 Moved declaration of ~= to a syntax section
lcp
parents: 278
diff changeset
    45
syntax
12662
a9bbba3473f3 syntax "_not_equal";
wenzelm
parents: 12368
diff changeset
    46
  "_not_equal"  :: "['a, 'a] => o"              (infixl "~=" 50)
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
    47
translations
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    48
  "x ~= y"      == "~ (x = y)"
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    49
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12019
diff changeset
    50
syntax (xsymbols)
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    51
  Not           :: "o => o"                     ("\<not> _" [40] 40)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    52
  "op &"        :: "[o, o] => o"                (infixr "\<and>" 35)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    53
  "op |"        :: "[o, o] => o"                (infixr "\<or>" 30)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    54
  "ALL "        :: "[idts, o] => o"             ("(3\<forall>_./ _)" [0, 10] 10)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    55
  "EX "         :: "[idts, o] => o"             ("(3\<exists>_./ _)" [0, 10] 10)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    56
  "EX! "        :: "[idts, o] => o"             ("(3\<exists>!_./ _)" [0, 10] 10)
12662
a9bbba3473f3 syntax "_not_equal";
wenzelm
parents: 12368
diff changeset
    57
  "_not_equal"  :: "['a, 'a] => o"              (infixl "\<noteq>" 50)
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    58
  "op -->"      :: "[o, o] => o"                (infixr "\<longrightarrow>" 25)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    59
  "op <->"      :: "[o, o] => o"                (infixr "\<longleftrightarrow>" 25)
35
d71f96f1780e ifol.thy: added ~= for "not equals"
lcp
parents: 0
diff changeset
    60
6340
7d5cbd5819a0 HTML output;
wenzelm
parents: 6027
diff changeset
    61
syntax (HTML output)
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
    62
  Not           :: "o => o"                     ("\<not> _" [40] 40)
6340
7d5cbd5819a0 HTML output;
wenzelm
parents: 6027
diff changeset
    63
7d5cbd5819a0 HTML output;
wenzelm
parents: 6027
diff changeset
    64
3932
wenzelm
parents: 3906
diff changeset
    65
local
3906
5ae0e1324c56 global;
wenzelm
parents: 3835
diff changeset
    66
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    67
axioms
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    68
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    69
  (* Equality *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    70
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    71
  refl:         "a=a"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    72
  subst:        "[| a=b;  P(a) |] ==> P(b)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    73
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    74
  (* Propositional logic *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    76
  conjI:        "[| P;  Q |] ==> P&Q"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    77
  conjunct1:    "P&Q ==> P"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    78
  conjunct2:    "P&Q ==> Q"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    79
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    80
  disjI1:       "P ==> P|Q"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    81
  disjI2:       "Q ==> P|Q"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    82
  disjE:        "[| P|Q;  P ==> R;  Q ==> R |] ==> R"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    84
  impI:         "(P ==> Q) ==> P-->Q"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    85
  mp:           "[| P-->Q;  P |] ==> Q"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    86
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    87
  FalseE:       "False ==> P"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    88
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    89
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    90
  (* Definitions *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    91
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    92
  True_def:     "True  == False-->False"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    93
  not_def:      "~P    == P-->False"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    94
  iff_def:      "P<->Q == (P-->Q) & (Q-->P)"
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    95
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
    96
  (* Unique existence *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    98
  ex1_def:      "EX! x. P(x) == EX x. P(x) & (ALL y. P(y) --> y=x)"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
    99
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
79
74e68ed3b4fd added white-space;
wenzelm
parents: 35
diff changeset
   101
  (* Quantifiers *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   103
  allI:         "(!!x. P(x)) ==> (ALL x. P(x))"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   104
  spec:         "(ALL x. P(x)) ==> P(x)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   106
  exI:          "P(x) ==> (EX x. P(x))"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   107
  exE:          "[| EX x. P(x);  !!x. P(x) ==> R |] ==> R"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   108
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
  (* Reflection *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   110
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   111
  eq_reflection:  "(x=y)   ==> (x==y)"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   112
  iff_reflection: "(P<->Q) ==> (P==Q)"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   113
4092
9faf228771dc added simpset thy_data;
wenzelm
parents: 3932
diff changeset
   114
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   115
subsection {* Lemmas and proof tools *}
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   116
9886
897d6602cbfb updated setup;
wenzelm
parents: 9526
diff changeset
   117
setup Simplifier.setup
897d6602cbfb updated setup;
wenzelm
parents: 9526
diff changeset
   118
use "IFOL_lemmas.ML"
11734
7a21bf539412 declare impE iffD1 iffD2 ad elim of Pure;
wenzelm
parents: 11677
diff changeset
   119
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   120
use "fologic.ML"
9886
897d6602cbfb updated setup;
wenzelm
parents: 9526
diff changeset
   121
use "hypsubstdata.ML"
897d6602cbfb updated setup;
wenzelm
parents: 9526
diff changeset
   122
setup hypsubst_setup
7355
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   123
use "intprover.ML"
4c43090659ca proper bootstrap of IFOL/FOL theories and packages;
wenzelm
parents: 6340
diff changeset
   124
4092
9faf228771dc added simpset thy_data;
wenzelm
parents: 3932
diff changeset
   125
12875
wenzelm
parents: 12662
diff changeset
   126
subsection {* Intuitionistic Reasoning *}
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   127
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   128
lemma impE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   129
  assumes 1: "P --> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   130
    and 2: "Q ==> R"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   131
    and 3: "P --> Q ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   132
  shows R
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   133
proof -
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   134
  from 3 and 1 have P .
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   135
  with 1 have Q by (rule impE)
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   136
  with 2 show R .
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   137
qed
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   138
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   139
lemma allE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   140
  assumes 1: "ALL x. P(x)"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   141
    and 2: "P(x) ==> ALL x. P(x) ==> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   142
  shows Q
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   143
proof -
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   144
  from 1 have "P(x)" by (rule spec)
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   145
  from this and 1 show Q by (rule 2)
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   146
qed
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   147
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   148
lemma notE':
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   149
  assumes 1: "~ P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   150
    and 2: "~ P ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12875
diff changeset
   151
  shows R
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   152
proof -
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   153
  from 2 and 1 have P .
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   154
  with 1 show R by (rule notE)
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   155
qed
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   156
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   157
lemmas [Pure.elim!] = disjE iffE FalseE conjE exE
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   158
  and [Pure.intro!] = iffI conjI impI TrueI notI allI refl
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   159
  and [Pure.elim 2] = allE notE' impE'
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   160
  and [Pure.intro] = exI disjI2 disjI1
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   161
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   162
ML_setup {*
12352
92c48cc45e78 renamed RuleContext to ContextRules;
wenzelm
parents: 12349
diff changeset
   163
  Context.>> (ContextRules.addSWrapper (fn tac => hyp_subst_tac ORELSE' tac));
12349
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   164
*}
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   165
94e812f9683e setup "rules" method;
wenzelm
parents: 12114
diff changeset
   166
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   167
lemma iff_not_sym: "~ (Q <-> P) ==> ~ (P <-> Q)"
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   168
  by rules
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   169
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   170
lemmas [sym] = sym iff_sym not_sym iff_not_sym
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   171
  and [Pure.elim?] = iffD1 iffD2 impE
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   172
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   173
13435
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   174
lemma eq_commute: "a=b <-> b=a"
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   175
apply (rule iffI) 
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   176
apply (erule sym)+
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   177
done
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   178
05631e8f0258 new theorem eq_commute
paulson
parents: 12937
diff changeset
   179
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   180
subsection {* Atomizing meta-level rules *}
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   181
11747
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
   182
lemma atomize_all [atomize]: "(!!x. P(x)) == Trueprop (ALL x. P(x))"
11976
075df6e46cef equal_intr_rule already declared in Pure;
wenzelm
parents: 11953
diff changeset
   183
proof
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   184
  assume "!!x. P(x)"
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   185
  show "ALL x. P(x)" ..
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   186
next
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   187
  assume "ALL x. P(x)"
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   188
  thus "!!x. P(x)" ..
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   189
qed
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   190
11747
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
   191
lemma atomize_imp [atomize]: "(A ==> B) == Trueprop (A --> B)"
11976
075df6e46cef equal_intr_rule already declared in Pure;
wenzelm
parents: 11953
diff changeset
   192
proof
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   193
  assume "A ==> B"
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   194
  thus "A --> B" ..
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   195
next
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   196
  assume "A --> B" and A
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   197
  thus B by (rule mp)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   198
qed
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   199
11747
17a6dcd6f3cf judgment Trueprop;
wenzelm
parents: 11734
diff changeset
   200
lemma atomize_eq [atomize]: "(x == y) == Trueprop (x = y)"
11976
075df6e46cef equal_intr_rule already declared in Pure;
wenzelm
parents: 11953
diff changeset
   201
proof
11677
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   202
  assume "x == y"
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   203
  show "x = y" by (unfold prems) (rule refl)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   204
next
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   205
  assume "x = y"
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   206
  thus "x == y" by (rule eq_reflection)
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   207
qed
ee12f18599e5 atomize stuff from theory FOL;
wenzelm
parents: 9886
diff changeset
   208
12875
wenzelm
parents: 12662
diff changeset
   209
lemma atomize_conj [atomize]:
wenzelm
parents: 12662
diff changeset
   210
  "(!!C. (A ==> B ==> PROP C) ==> PROP C) == Trueprop (A & B)"
11976
075df6e46cef equal_intr_rule already declared in Pure;
wenzelm
parents: 11953
diff changeset
   211
proof
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   212
  assume "!!C. (A ==> B ==> PROP C) ==> PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   213
  show "A & B" by (rule conjI)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   214
next
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   215
  fix C
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   216
  assume "A & B"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   217
  assume "A ==> B ==> PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   218
  thus "PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   219
  proof this
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   220
    show A by (rule conjunct1)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   221
    show B by (rule conjunct2)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   222
  qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   223
qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11848
diff changeset
   224
12368
2af9ad81ea56 sym declarations;
wenzelm
parents: 12352
diff changeset
   225
lemmas [symmetric, rulify] = atomize_all atomize_imp
11771
b7b100a2de1d moved rulify to ObjectLogic;
wenzelm
parents: 11747
diff changeset
   226
11848
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   227
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   228
subsection {* Calculational rules *}
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   229
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   230
lemma forw_subst: "a = b ==> P(b) ==> P(a)"
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   231
  by (rule ssubst)
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   232
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   233
lemma back_subst: "P(a) ==> a = b ==> P(b)"
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   234
  by (rule subst)
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   235
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   236
text {*
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   237
  Note that this list of rules is in reverse order of priorities.
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   238
*}
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   239
12019
abe9b7c6016e transitive declared in Pure;
wenzelm
parents: 11976
diff changeset
   240
lemmas basic_trans_rules [trans] =
11848
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   241
  forw_subst
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   242
  back_subst
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   243
  rev_mp
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   244
  mp
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   245
  trans
6e3017adb8c0 calculational rules moved from FOL to IFOL;
wenzelm
parents: 11771
diff changeset
   246
4854
d1850e0964f2 tuned setup;
wenzelm
parents: 4793
diff changeset
   247
end