src/HOL/HOL.thy
author nipkow
Thu, 04 Mar 2004 15:49:42 +0100
changeset 14432 b02de2918c59
parent 14430 5cb24165a2e1
child 14444 24724afce166
permissions -rw-r--r--
Lex: ML -> thy
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
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     5
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
     7
header {* The basis of Higher-Order Logic *}
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
     9
theory HOL = CPure
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11438
diff changeset
    10
files ("HOL_lemmas.ML") ("cladata.ML") ("blastdata.ML") ("simpdata.ML"):
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
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
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
    17
classes type < logic
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
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
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
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    35
  If            :: "[bool, 'a, 'a] => 'a"           ("(if (_)/ then (_)/ else (_))" 10)
3947
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 3842
diff changeset
    36
  arbitrary     :: '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
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    51
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
    52
subsubsection {* Additional concrete syntax *}
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    53
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
    54
nonterminals
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
  letbinds  letbind
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
  case_syn  cases_syn
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
syntax
12650
fbc17f1e746b "_not_equal" dummy constant;
wenzelm
parents: 12633
diff changeset
    59
  "_not_equal"  :: "['a, 'a] => bool"                    (infixl "~=" 50)
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
    60
  "_The"        :: "[pttrn, bool] => 'a"                 ("(3THE _./ _)" [0, 10] 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    62
  "_bind"       :: "[pttrn, 'a] => letbind"              ("(2_ =/ _)" 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    63
  ""            :: "letbind => letbinds"                 ("_")
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    64
  "_binds"      :: "[letbind, letbinds] => letbinds"     ("_;/ _")
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    65
  "_Let"        :: "[letbinds, 'a] => 'a"                ("(let (_)/ in (_))" 10)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
9060
b0dd884b1848 rename @case to _case_syntax (improves on low-level errors);
wenzelm
parents: 8959
diff changeset
    67
  "_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
    68
  "_case1"      :: "['a, 'b] => case_syn"                ("(2_ =>/ _)" 10)
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
    69
  ""            :: "case_syn => cases_syn"               ("_")
9060
b0dd884b1848 rename @case to _case_syntax (improves on low-level errors);
wenzelm
parents: 8959
diff changeset
    70
  "_case2"      :: "[case_syn, cases_syn] => cases_syn"  ("_/ | _")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
translations
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
    73
  "x ~= y"                == "~ (x = y)"
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13763
diff changeset
    74
  "THE x. P"              == "The (%x. P)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
  "_Let (_binds b bs) e"  == "_Let b (_Let bs e)"
1114
c8dfb56a7e95 Prod is now a parent of Lfp.
nipkow
parents: 1068
diff changeset
    76
  "let x = a in e"        == "Let a (%x. e)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    78
print_translation {*
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    79
(* To avoid eta-contraction of body: *)
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    80
[("The", fn [Abs abs] =>
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    81
     let val (x,t) = atomic_abs_tr' abs
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    82
     in Syntax.const "_The" $ x $ t end)]
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    83
*}
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13723
diff changeset
    84
12633
ad9277743664 tuned ``syntax (output)'';
wenzelm
parents: 12436
diff changeset
    85
syntax (output)
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    86
  "="           :: "['a, 'a] => bool"                    (infix 50)
12650
fbc17f1e746b "_not_equal" dummy constant;
wenzelm
parents: 12633
diff changeset
    87
  "_not_equal"  :: "['a, 'a] => bool"                    (infix "~=" 50)
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
    88
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
    89
syntax (xsymbols)
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    90
  Not           :: "bool => bool"                        ("\<not> _" [40] 40)
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    91
  "op &"        :: "[bool, bool] => bool"                (infixr "\<and>" 35)
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    92
  "op |"        :: "[bool, bool] => bool"                (infixr "\<or>" 30)
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
    93
  "op -->"      :: "[bool, bool] => bool"                (infixr "\<longrightarrow>" 25)
12650
fbc17f1e746b "_not_equal" dummy constant;
wenzelm
parents: 12633
diff changeset
    94
  "_not_equal"  :: "['a, 'a] => bool"                    (infix "\<noteq>" 50)
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    95
  "ALL "        :: "[idts, bool] => bool"                ("(3\<forall>_./ _)" [0, 10] 10)
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    96
  "EX "         :: "[idts, bool] => bool"                ("(3\<exists>_./ _)" [0, 10] 10)
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    97
  "EX! "        :: "[idts, bool] => bool"                ("(3\<exists>!_./ _)" [0, 10] 10)
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
    98
  "_case1"      :: "['a, 'b] => case_syn"                ("(2_ \<Rightarrow>/ _)" 10)
14361
ad2f5da643b4 * Support for raw latex output in control symbols: \<^raw...>
schirmer
parents: 14357
diff changeset
    99
(*"_case2"      :: "[case_syn, cases_syn] => cases_syn"  ("_/ \<orelse> _")*)
2372
a2999e19703b fixed alternative quantifier symbol syntax;
wenzelm
parents: 2368
diff changeset
   100
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
   101
syntax (xsymbols output)
12650
fbc17f1e746b "_not_equal" dummy constant;
wenzelm
parents: 12633
diff changeset
   102
  "_not_equal"  :: "['a, 'a] => bool"                    (infix "\<noteq>" 50)
3820
46b255e140dc fixed infix syntax;
wenzelm
parents: 3370
diff changeset
   103
6340
7d5cbd5819a0 HTML output;
wenzelm
parents: 6289
diff changeset
   104
syntax (HTML output)
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
   105
  Not           :: "bool => bool"                        ("\<not> _" [40] 40)
6340
7d5cbd5819a0 HTML output;
wenzelm
parents: 6289
diff changeset
   106
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   107
syntax (HOL)
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   108
  "ALL "        :: "[idts, bool] => bool"                ("(3! _./ _)" [0, 10] 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   109
  "EX "         :: "[idts, bool] => bool"                ("(3? _./ _)" [0, 10] 10)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   110
  "EX! "        :: "[idts, bool] => bool"                ("(3?! _./ _)" [0, 10] 10)
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   111
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 7220
diff changeset
   112
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   113
subsubsection {* Axioms and basic definitions *}
2260
b59781f2b809 added symbols syntax;
wenzelm
parents: 1674
diff changeset
   114
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   115
axioms
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   116
  eq_reflection: "(x=y) ==> (x==y)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   118
  refl:         "t = (t::'a)"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   119
  subst:        "[| s = t; P(s) |] ==> P(t::'a)"
6289
062aa156a300 added a commment on the "ext" rule
paulson
parents: 6027
diff changeset
   120
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   121
  ext:          "(!!x::'a. (f x ::'b) = g x) ==> (%x. f x) = (%x. g x)"
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   122
    -- {* Extensionality is built into the meta-logic, and this rule expresses *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   123
    -- {* a related property.  It is an eta-expanded version of the traditional *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   124
    -- {* rule, and similar to the ABS rule of HOL *}
6289
062aa156a300 added a commment on the "ext" rule
paulson
parents: 6027
diff changeset
   125
11432
8a203ae6efe3 added "The" (definite description operator) (by Larry);
wenzelm
parents: 10489
diff changeset
   126
  the_eq_trivial: "(THE x. x = a) = (a::'a)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   128
  impI:         "(P ==> Q) ==> P-->Q"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   129
  mp:           "[| P-->Q;  P |] ==> Q"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
defs
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   132
  True_def:     "True      == ((%x::bool. x) = (%x. x))"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   133
  All_def:      "All(P)    == (P = (%x. True))"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11438
diff changeset
   134
  Ex_def:       "Ex(P)     == !Q. (!x. P x --> Q) --> Q"
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   135
  False_def:    "False     == (!P. P)"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   136
  not_def:      "~ P       == P-->False"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   137
  and_def:      "P & Q     == !R. (P-->Q-->R) --> R"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   138
  or_def:       "P | Q     == !R. (P-->R) --> (Q-->R) --> R"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   139
  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
   140
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   141
axioms
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   142
  iff:          "(P-->Q) --> (Q-->P) --> (P=Q)"
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   143
  True_or_False:  "(P=True) | (P=False)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
defs
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents: 7238
diff changeset
   146
  Let_def:      "Let s f == f(s)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents: 11438
diff changeset
   147
  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
   148
14223
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   149
finalconsts
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   150
  "op ="
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   151
  "op -->"
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   152
  The
0ee05eef881b Added support for making constants final, that is, ensuring that no
skalberg
parents: 14208
diff changeset
   153
  arbitrary
3320
3a5e4930fb77 Added `arbitrary'
nipkow
parents: 3248
diff changeset
   154
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   155
subsubsection {* Generic algebraic operations *}
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   156
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   157
axclass zero < type
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   158
axclass one < type
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   159
axclass plus < type
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   160
axclass minus < type
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   161
axclass times < type
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   162
axclass inverse < type
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   163
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   164
global
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   165
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   166
consts
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   167
  "0"           :: "'a::zero"                       ("0")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   168
  "1"           :: "'a::one"                        ("1")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   169
  "+"           :: "['a::plus, 'a]  => 'a"          (infixl 65)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   170
  -             :: "['a::minus, 'a] => 'a"          (infixl 65)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   171
  uminus        :: "['a::minus] => 'a"              ("- _" [81] 80)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   172
  *             :: "['a::times, 'a] => 'a"          (infixl 70)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   173
13456
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   174
syntax
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   175
  "_index1"  :: index    ("\<^sub>1")
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   176
translations
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   177
  (index) "\<^sub>1" == "_index 1"
42601eb7553f special syntax for index "1" (plain numeral hidden by "1" symbol in HOL);
wenzelm
parents: 13438
diff changeset
   178
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   179
local
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   180
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   181
typed_print_translation {*
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   182
  let
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   183
    fun tr' c = (c, fn show_sorts => fn T => fn ts =>
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   184
      if T = dummyT orelse not (! show_types) andalso can Term.dest_Type T then raise Match
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   185
      else Syntax.const Syntax.constrainC $ Syntax.const c $ Syntax.term_of_typ show_sorts T);
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   186
  in [tr' "0", tr' "1"] end;
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   187
*} -- {* show types that are presumably too general *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   188
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   189
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   190
consts
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   191
  abs           :: "'a::minus => 'a"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   192
  inverse       :: "'a::inverse => 'a"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   193
  divide        :: "['a::inverse, 'a] => 'a"        (infixl "'/" 70)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   194
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   195
syntax (xsymbols)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   196
  abs :: "'a::minus => 'a"    ("\<bar>_\<bar>")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   197
syntax (HTML output)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   198
  abs :: "'a::minus => 'a"    ("\<bar>_\<bar>")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   199
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   200
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   201
subsection {* Theory and package setup *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   202
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   203
subsubsection {* Basic lemmas *}
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   204
9736
332fab43628f Fixed rulify.
nipkow
parents: 9713
diff changeset
   205
use "HOL_lemmas.ML"
11687
b0fe6e522559 non-oriented infix = and ~= (output only);
wenzelm
parents: 11451
diff changeset
   206
theorems case_split = case_split_thm [case_names True False]
9869
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   207
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   208
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   209
subsubsection {* Intuitionistic Reasoning *}
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   210
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   211
lemma impE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   212
  assumes 1: "P --> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   213
    and 2: "Q ==> R"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   214
    and 3: "P --> Q ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   215
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   216
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   217
  from 3 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   218
  with 1 have Q by (rule impE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   219
  with 2 show R .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   220
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   221
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   222
lemma allE':
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   223
  assumes 1: "ALL x. P x"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   224
    and 2: "P x ==> ALL x. P x ==> Q"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   225
  shows Q
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   226
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   227
  from 1 have "P x" by (rule spec)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   228
  from this and 1 show Q by (rule 2)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   229
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   230
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   231
lemma notE':
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   232
  assumes 1: "~ P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   233
    and 2: "~ P ==> P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   234
  shows R
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   235
proof -
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   236
  from 2 and 1 have P .
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   237
  with 1 show R by (rule notE)
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   238
qed
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   239
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   240
lemmas [CPure.elim!] = disjE iffE FalseE conjE exE
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   241
  and [CPure.intro!] = iffI conjI impI TrueI notI allI refl
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   242
  and [CPure.elim 2] = allE notE' impE'
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   243
  and [CPure.intro] = exI disjI2 disjI1
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   244
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   245
lemmas [trans] = trans
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   246
  and [sym] = sym not_sym
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   247
  and [CPure.elim?] = iffD1 iffD2 impE
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   248
11438
3d9222b80989 declare trans [trans] (*overridden in theory Calculation*);
wenzelm
parents: 11432
diff changeset
   249
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   250
subsubsection {* Atomizing meta-level connectives *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   251
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   252
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
   253
proof
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   254
  assume "!!x. P x"
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   255
  show "ALL x. P x" by (rule allI)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   256
next
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   257
  assume "ALL x. P x"
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   258
  thus "!!x. P x" by (rule allE)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   259
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   260
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   261
lemma atomize_imp [atomize]: "(A ==> B) == Trueprop (A --> B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   262
proof
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   263
  assume r: "A ==> B"
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   264
  show "A --> B" by (rule impI) (rule r)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   265
next
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   266
  assume "A --> B" and A
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   267
  thus B by (rule mp)
9488
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   268
qed
f11bece4e2db added all_eq, imp_eq (for blast);
wenzelm
parents: 9352
diff changeset
   269
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   270
lemma atomize_eq [atomize]: "(x == y) == Trueprop (x = y)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   271
proof
10432
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   272
  assume "x == y"
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   273
  show "x = y" by (unfold prems) (rule refl)
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   274
next
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   275
  assume "x = y"
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   276
  thus "x == y" by (rule eq_reflection)
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   277
qed
3dfbc913d184 added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents: 10383
diff changeset
   278
12023
wenzelm
parents: 12003
diff changeset
   279
lemma atomize_conj [atomize]:
wenzelm
parents: 12003
diff changeset
   280
  "(!!C. (A ==> B ==> PROP C) ==> PROP C) == Trueprop (A & B)"
12003
c09427e5f554 removed obsolete (rule equal_intr_rule);
wenzelm
parents: 11989
diff changeset
   281
proof
11953
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   282
  assume "!!C. (A ==> B ==> PROP C) ==> PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   283
  show "A & B" by (rule conjI)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   284
next
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   285
  fix C
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   286
  assume "A & B"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   287
  assume "A ==> B ==> PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   288
  thus "PROP C"
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   289
  proof this
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   290
    show A by (rule conjunct1)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   291
    show B by (rule conjunct2)
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   292
  qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   293
qed
f98623fdf6ef atomize_conj;
wenzelm
parents: 11824
diff changeset
   294
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   295
lemmas [symmetric, rulify] = atomize_all atomize_imp
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   296
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   297
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   298
subsubsection {* Classical Reasoner setup *}
9529
d9434a9277a4 lemmas atomize = all_eq imp_eq;
wenzelm
parents: 9488
diff changeset
   299
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   300
use "cladata.ML"
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   301
setup hypsubst_setup
11977
2e7c54b86763 tuned declaration of rules;
wenzelm
parents: 11953
diff changeset
   302
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   303
ML_setup {*
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   304
  Context.>> (ContextRules.addSWrapper (fn tac => hyp_subst_tac' ORELSE' tac));
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   305
*}
11977
2e7c54b86763 tuned declaration of rules;
wenzelm
parents: 11953
diff changeset
   306
10383
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   307
setup Classical.setup
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   308
setup clasetup
a092ae7bb2a6 "atomize" for classical tactics;
wenzelm
parents: 9970
diff changeset
   309
12386
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   310
lemmas [intro?] = ext
9c38ec9eca1c tuned declarations (rules, sym, etc.);
wenzelm
parents: 12354
diff changeset
   311
  and [elim?] = ex1_implies_ex
11977
2e7c54b86763 tuned declaration of rules;
wenzelm
parents: 11953
diff changeset
   312
9869
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   313
use "blastdata.ML"
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   314
setup Blast.setup
4868
843a9f5b3c3d nonterminals;
wenzelm
parents: 4793
diff changeset
   315
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   316
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   317
subsubsection {* Simplifier setup *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   318
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   319
lemma meta_eq_to_obj_eq: "x == y ==> x = y"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   320
proof -
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   321
  assume r: "x == y"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   322
  show "x = y" by (unfold r) (rule refl)
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   323
qed
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   324
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   325
lemma eta_contract_eq: "(%s. f s) = f" ..
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   326
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   327
lemma simp_thms:
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   328
  shows not_not: "(~ ~ P) = P"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   329
  and
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   330
    "(P ~= Q) = (P = (~Q))"
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   331
    "(P | ~P) = True"    "(~P | P) = True"
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   332
    "((~P) = (~Q)) = (P=Q)"
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   333
    "(x = x) = True"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   334
    "(~True) = False"  "(~False) = True"
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   335
    "(~P) ~= P"  "P ~= (~P)"
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   336
    "(True=P) = P"  "(P=True) = P"  "(False=P) = (~P)"  "(P=False) = (~P)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   337
    "(True --> P) = P"  "(False --> P) = True"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   338
    "(P --> True) = True"  "(P --> P) = True"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   339
    "(P --> False) = (~P)"  "(P --> ~P) = (~P)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   340
    "(P & True) = P"  "(True & P) = P"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   341
    "(P & False) = False"  "(False & P) = False"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   342
    "(P & P) = P"  "(P & (P & Q)) = (P & Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   343
    "(P & ~P) = False"    "(~P & P) = False"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   344
    "(P | True) = True"  "(True | P) = True"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   345
    "(P | False) = P"  "(False | P) = P"
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   346
    "(P | P) = P"  "(P | (P | Q)) = (P | Q)" and
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   347
    "(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
   348
    -- {* needed for the one-point-rule quantifier simplification procs *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   349
    -- {* essential for termination!! *} and
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   350
    "!!P. (EX x. x=t & P(x)) = P(t)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   351
    "!!P. (EX x. t=x & P(x)) = P(t)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   352
    "!!P. (ALL x. x=t --> P(x)) = P(t)"
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   353
    "!!P. (ALL x. t=x --> P(x)) = P(t)"
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   354
  by (blast, blast, blast, blast, blast, rules+)
13421
8fcdf4a26468 simplified locale predicates;
wenzelm
parents: 13412
diff changeset
   355
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   356
lemma imp_cong: "(P = P') ==> (P' ==> (Q = Q')) ==> ((P --> Q) = (P' --> Q'))"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   357
  by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   358
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   359
lemma ex_simps:
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   360
  "!!P Q. (EX x. P x & Q)   = ((EX x. P x) & Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   361
  "!!P Q. (EX x. P & Q x)   = (P & (EX x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   362
  "!!P Q. (EX x. P x | Q)   = ((EX x. P x) | Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   363
  "!!P Q. (EX x. P | Q x)   = (P | (EX x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   364
  "!!P Q. (EX x. P x --> Q) = ((ALL x. P x) --> Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   365
  "!!P Q. (EX x. P --> Q x) = (P --> (EX x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   366
  -- {* Miniscoping: pushing in existential quantifiers. *}
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   367
  by (rules | blast)+
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   368
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   369
lemma all_simps:
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   370
  "!!P Q. (ALL x. P x & Q)   = ((ALL x. P x) & Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   371
  "!!P Q. (ALL x. P & Q x)   = (P & (ALL x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   372
  "!!P Q. (ALL x. P x | Q)   = ((ALL x. P x) | Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   373
  "!!P Q. (ALL x. P | Q x)   = (P | (ALL x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   374
  "!!P Q. (ALL x. P x --> Q) = ((EX x. P x) --> Q)"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   375
  "!!P Q. (ALL x. P --> Q x) = (P --> (ALL x. Q x))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   376
  -- {* Miniscoping: pushing in universal quantifiers. *}
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   377
  by (rules | blast)+
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   378
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   379
lemma disj_absorb: "(A | A) = A"
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   380
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   381
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   382
lemma disj_left_absorb: "(A | (A | B)) = (A | B)"
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   383
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   384
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   385
lemma conj_absorb: "(A & A) = A"
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   386
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   387
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   388
lemma conj_left_absorb: "(A & (A & B)) = (A & B)"
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   389
  by blast
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   390
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   391
lemma eq_ac:
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   392
  shows eq_commute: "(a=b) = (b=a)"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   393
    and eq_left_commute: "(P=(Q=R)) = (Q=(P=R))"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   394
    and eq_assoc: "((P=Q)=R) = (P=(Q=R))" by (rules, blast+)
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   395
lemma neq_commute: "(a~=b) = (b~=a)" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   396
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   397
lemma conj_comms:
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   398
  shows conj_commute: "(P&Q) = (Q&P)"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   399
    and conj_left_commute: "(P&(Q&R)) = (Q&(P&R))" by rules+
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   400
lemma conj_assoc: "((P&Q)&R) = (P&(Q&R))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   401
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   402
lemma disj_comms:
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   403
  shows disj_commute: "(P|Q) = (Q|P)"
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12892
diff changeset
   404
    and disj_left_commute: "(P|(Q|R)) = (Q|(P|R))" by rules+
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   405
lemma disj_assoc: "((P|Q)|R) = (P|(Q|R))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   406
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   407
lemma conj_disj_distribL: "(P&(Q|R)) = (P&Q | P&R)" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   408
lemma conj_disj_distribR: "((P|Q)&R) = (P&R | Q&R)" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   409
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   410
lemma disj_conj_distribL: "(P|(Q&R)) = ((P|Q) & (P|R))" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   411
lemma disj_conj_distribR: "((P&Q)|R) = ((P|R) & (Q|R))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   412
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   413
lemma imp_conjR: "(P --> (Q&R)) = ((P-->Q) & (P-->R))" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   414
lemma imp_conjL: "((P&Q) -->R)  = (P --> (Q --> R))" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   415
lemma imp_disjL: "((P|Q) --> R) = ((P-->R)&(Q-->R))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   416
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   417
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
   418
lemma imp_disj_not1: "(P --> Q | R) = (~Q --> P --> R)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   419
lemma imp_disj_not2: "(P --> Q | R) = (~R --> P --> Q)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   420
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   421
lemma imp_disj1: "((P-->Q)|R) = (P--> Q|R)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   422
lemma imp_disj2: "(Q|(P-->R)) = (P--> Q|R)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   423
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   424
lemma de_Morgan_disj: "(~(P | Q)) = (~P & ~Q)" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   425
lemma de_Morgan_conj: "(~(P & Q)) = (~P | ~Q)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   426
lemma not_imp: "(~(P --> Q)) = (P & ~Q)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   427
lemma not_iff: "(P~=Q) = (P = (~Q))" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   428
lemma disj_not1: "(~P | Q) = (P --> Q)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   429
lemma disj_not2: "(P | ~Q) = (Q --> P)"  -- {* changes orientation :-( *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   430
  by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   431
lemma imp_conv_disj: "(P --> Q) = ((~P) | Q)" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   432
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   433
lemma iff_conv_conj_imp: "(P = Q) = ((P --> Q) & (Q --> P))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   434
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   435
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   436
lemma cases_simp: "((P --> Q) & (~P --> Q)) = Q"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   437
  -- {* Avoids duplication of subgoals after @{text split_if}, when the true and false *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   438
  -- {* cases boil down to the same thing. *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   439
  by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   440
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   441
lemma not_all: "(~ (! x. P(x))) = (? x.~P(x))" by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   442
lemma imp_all: "((! x. P x) --> Q) = (? x. P x --> Q)" by blast
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   443
lemma not_ex: "(~ (? x. P(x))) = (! x.~P(x))" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   444
lemma imp_ex: "((? x. P x) --> Q) = (! x. P x --> Q)" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   445
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   446
lemma ex_disj_distrib: "(? x. P(x) | Q(x)) = ((? x. P(x)) | (? x. Q(x)))" by rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   447
lemma all_conj_distrib: "(!x. P(x) & Q(x)) = ((! x. P(x)) & (! x. Q(x)))" by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   448
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   449
text {*
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   450
  \medskip The @{text "&"} congruence rule: not included by default!
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   451
  May slow rewrite proofs down by as much as 50\% *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   452
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   453
lemma conj_cong:
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   454
    "(P = P') ==> (P' ==> (Q = Q')) ==> ((P & Q) = (P' & Q'))"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   455
  by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   456
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   457
lemma rev_conj_cong:
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   458
    "(Q = Q') ==> (Q' ==> (P = P')) ==> ((P & Q) = (P' & Q'))"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   459
  by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   460
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   461
text {* The @{text "|"} congruence rule: not included by default! *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   462
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   463
lemma disj_cong:
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   464
    "(P = P') ==> (~P' ==> (Q = Q')) ==> ((P | Q) = (P' | Q'))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   465
  by blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   466
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   467
lemma eq_sym_conv: "(x = y) = (y = x)"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   468
  by rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   469
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   470
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   471
text {* \medskip if-then-else rules *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   472
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   473
lemma if_True: "(if True then x else y) = x"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   474
  by (unfold if_def) blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   475
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   476
lemma if_False: "(if False then x else y) = y"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   477
  by (unfold if_def) blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   478
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   479
lemma if_P: "P ==> (if P then x else y) = x"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   480
  by (unfold if_def) blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   481
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   482
lemma if_not_P: "~P ==> (if P then x else y) = y"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   483
  by (unfold if_def) blast
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   484
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   485
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
   486
  apply (rule case_split [of Q])
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   487
   apply (subst if_P)
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   488
    prefer 3 apply (subst if_not_P, blast+)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   489
  done
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   490
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   491
lemma split_if_asm: "P (if Q then x else y) = (~((Q & ~P x) | (~Q & ~P y)))"
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   492
by (subst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   493
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   494
lemmas if_splits = split_if split_if_asm
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   495
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   496
lemma if_def2: "(if Q then x else y) = ((Q --> x) & (~ Q --> y))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   497
  by (rule split_if)
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   498
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   499
lemma if_cancel: "(if c then x else x) = x"
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   500
by (subst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   501
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   502
lemma if_eq_cancel: "(if x = y then y else x) = x"
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   503
by (subst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   504
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   505
lemma if_bool_eq_conj: "(if P then Q else R) = ((P-->Q) & (~P-->R))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   506
  -- {* This form is useful for expanding @{text if}s on the RIGHT of the @{text "==>"} symbol. *}
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   507
  by (rule split_if)
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   508
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   509
lemma if_bool_eq_disj: "(if P then Q else R) = ((P&Q) | (~P&R))"
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   510
  -- {* And this form is useful for expanding @{text if}s on the LEFT. *}
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   511
  apply (subst split_if, blast)
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   512
  done
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   513
12436
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   514
lemma Eq_TrueI: "P ==> P == True" by (unfold atomize_eq) rules
a2df07fefed7 Replaced several occurrences of "blast" by "rules".
berghofe
parents: 12386
diff changeset
   515
lemma Eq_FalseI: "~P ==> P == False" by (unfold atomize_eq) rules
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   516
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   517
subsubsection {* Actual Installation of the Simplifier *}
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   518
9869
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   519
use "simpdata.ML"
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   520
setup Simplifier.setup
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   521
setup "Simplifier.method_setup Splitter.split_modifiers" setup simpsetup
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   522
setup Splitter.setup setup Clasimp.setup
95dca9f991f2 improved meson setup;
wenzelm
parents: 9852
diff changeset
   523
14201
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   524
declare disj_absorb [simp] conj_absorb [simp] 
7ad7ab89c402 some basic new lemmas
paulson
parents: 13764
diff changeset
   525
13723
c7d104550205 *** empty log message ***
nipkow
parents: 13638
diff changeset
   526
lemma ex1_eq[iff]: "EX! x. x = t" "EX! x. t = x"
c7d104550205 *** empty log message ***
nipkow
parents: 13638
diff changeset
   527
by blast+
c7d104550205 *** empty log message ***
nipkow
parents: 13638
diff changeset
   528
13638
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   529
theorem choice_eq: "(ALL x. EX! y. P x y) = (EX! f. ALL x. P x (f x))"
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   530
  apply (rule iffI)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   531
  apply (rule_tac a = "%x. THE y. P x y" in ex1I)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   532
  apply (fast dest!: theI')
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   533
  apply (fast intro: ext the1_equality [symmetric])
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   534
  apply (erule ex1E)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   535
  apply (rule allI)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   536
  apply (rule ex1I)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   537
  apply (erule spec)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   538
  apply (erule_tac x = "%z. if z = x then y else f z" in allE)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   539
  apply (erule impE)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   540
  apply (rule allI)
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   541
  apply (rule_tac P = "xa = x" in case_split_thm)
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   542
  apply (drule_tac [3] x = x in fun_cong, simp_all)
13638
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   543
  done
2b234b079245 Added choice_eq.
berghofe
parents: 13598
diff changeset
   544
13438
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   545
text{*Needs only HOL-lemmas:*}
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   546
lemma mk_left_commute:
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   547
  assumes a: "\<And>x y z. f (f x y) z = f x (f y z)" and
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   548
          c: "\<And>x y. f x y = f y x"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   549
  shows "f x (f y z) = f y (f x z)"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   550
by(rule trans[OF trans[OF c a] arg_cong[OF c, of "f y"]])
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   551
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   552
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   553
subsubsection {* Generic cases and induction *}
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   554
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   555
constdefs
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   556
  induct_forall :: "('a => bool) => bool"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   557
  "induct_forall P == \<forall>x. P x"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   558
  induct_implies :: "bool => bool => bool"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   559
  "induct_implies A B == A --> B"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   560
  induct_equal :: "'a => 'a => bool"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   561
  "induct_equal x y == x = y"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   562
  induct_conj :: "bool => bool => bool"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   563
  "induct_conj A B == A & B"
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   564
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   565
lemma induct_forall_eq: "(!!x. P x) == Trueprop (induct_forall (\<lambda>x. P x))"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   566
  by (simp only: atomize_all induct_forall_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   567
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   568
lemma induct_implies_eq: "(A ==> B) == Trueprop (induct_implies A B)"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   569
  by (simp only: atomize_imp induct_implies_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   570
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   571
lemma induct_equal_eq: "(x == y) == Trueprop (induct_equal x y)"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   572
  by (simp only: atomize_eq induct_equal_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   573
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   574
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
   575
    induct_conj (induct_forall A) (induct_forall B)"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   576
  by (unfold induct_forall_def induct_conj_def) rules
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   577
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   578
lemma induct_implies_conj: "induct_implies C (induct_conj A B) =
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   579
    induct_conj (induct_implies C A) (induct_implies C B)"
12354
5f5ee25513c5 setup "rules" method;
wenzelm
parents: 12338
diff changeset
   580
  by (unfold induct_implies_def induct_conj_def) rules
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   581
13598
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   582
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
   583
proof
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   584
  assume r: "induct_conj A B ==> PROP C" and A B
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   585
  show "PROP C" by (rule r) (simp! add: induct_conj_def)
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   586
next
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   587
  assume r: "A ==> B ==> PROP C" and "induct_conj A B"
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   588
  show "PROP C" by (rule r) (simp! add: induct_conj_def)+
8bc77b17f59f Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents: 13596
diff changeset
   589
qed
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   590
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   591
lemma induct_impliesI: "(A ==> B) ==> induct_implies A B"
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   592
  by (simp add: induct_implies_def)
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   593
12161
ea4fbf26a945 lemmas induct_atomize = atomize_conj ...;
wenzelm
parents: 12114
diff changeset
   594
lemmas induct_atomize = atomize_conj induct_forall_eq induct_implies_eq induct_equal_eq
ea4fbf26a945 lemmas induct_atomize = atomize_conj ...;
wenzelm
parents: 12114
diff changeset
   595
lemmas induct_rulify1 [symmetric, standard] = induct_forall_eq induct_implies_eq induct_equal_eq
ea4fbf26a945 lemmas induct_atomize = atomize_conj ...;
wenzelm
parents: 12114
diff changeset
   596
lemmas induct_rulify2 = induct_forall_def induct_implies_def induct_equal_def induct_conj_def
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   597
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
   598
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   599
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
   600
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   601
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   602
text {* Method setup. *}
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   603
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   604
ML {*
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   605
  structure InductMethod = InductMethodFun
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   606
  (struct
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   607
    val dest_concls = HOLogic.dest_concls;
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   608
    val cases_default = thm "case_split";
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   609
    val local_impI = thm "induct_impliesI";
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   610
    val conjI = thm "conjI";
11989
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   611
    val atomize = thms "induct_atomize";
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   612
    val rulify1 = thms "induct_rulify1";
d4bcba4e080e renamed inductive_XXX to induct_XXX;
wenzelm
parents: 11977
diff changeset
   613
    val rulify2 = thms "induct_rulify2";
12240
0760eda193c4 induct method: localize rews for rule;
wenzelm
parents: 12161
diff changeset
   614
    val localize = [Thm.symmetric (thm "induct_implies_def")];
11824
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   615
  end);
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   616
*}
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   617
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   618
setup InductMethod.setup
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   619
f4c1882dde2c setup generic cases and induction (from Inductive.thy);
wenzelm
parents: 11770
diff changeset
   620
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   621
subsection {* Order signatures and orders *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   622
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   623
axclass
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 12281
diff changeset
   624
  ord < type
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   625
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   626
syntax
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   627
  "op <"        :: "['a::ord, 'a] => bool"             ("op <")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   628
  "op <="       :: "['a::ord, 'a] => bool"             ("op <=")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   629
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   630
global
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   631
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   632
consts
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   633
  "op <"        :: "['a::ord, 'a] => bool"             ("(_/ < _)"  [50, 51] 50)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   634
  "op <="       :: "['a::ord, 'a] => bool"             ("(_/ <= _)" [50, 51] 50)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   635
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   636
local
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   637
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
   638
syntax (xsymbols)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   639
  "op <="       :: "['a::ord, 'a] => bool"             ("op \<le>")
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   640
  "op <="       :: "['a::ord, 'a] => bool"             ("(_/ \<le> _)"  [50, 51] 50)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   641
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   642
14295
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   643
lemma Not_eq_iff: "((~P) = (~Q)) = (P = Q)"
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   644
by blast
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   645
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   646
subsubsection {* Monotonicity *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   647
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12937
diff changeset
   648
locale mono =
666137b488a4 predicate defs via locales;
wenzelm
parents: 12937
diff changeset
   649
  fixes f
666137b488a4 predicate defs via locales;
wenzelm
parents: 12937
diff changeset
   650
  assumes mono: "A <= B ==> f A <= f B"
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   651
13421
8fcdf4a26468 simplified locale predicates;
wenzelm
parents: 13412
diff changeset
   652
lemmas monoI [intro?] = mono.intro
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12937
diff changeset
   653
  and monoD [dest?] = mono.mono
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   654
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   655
constdefs
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   656
  min :: "['a::ord, 'a] => 'a"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   657
  "min a b == (if a <= b then a else b)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   658
  max :: "['a::ord, 'a] => 'a"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   659
  "max a b == (if a <= b then b else a)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   660
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   661
lemma min_leastL: "(!!x. least <= x) ==> min least x = least"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   662
  by (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   663
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   664
lemma min_of_mono:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   665
    "ALL x y. (f x <= f y) = (x <= y) ==> min (f m) (f n) = f (min m n)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   666
  by (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   667
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   668
lemma max_leastL: "(!!x. least <= x) ==> max least x = x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   669
  by (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   670
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   671
lemma max_of_mono:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   672
    "ALL x y. (f x <= f y) = (x <= y) ==> max (f m) (f n) = f (max m n)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   673
  by (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   674
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   675
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   676
subsubsection "Orders"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   677
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   678
axclass order < ord
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   679
  order_refl [iff]: "x <= x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   680
  order_trans: "x <= y ==> y <= z ==> x <= z"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   681
  order_antisym: "x <= y ==> y <= x ==> x = y"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   682
  order_less_le: "(x < y) = (x <= y & x ~= y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   683
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   684
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   685
text {* Reflexivity. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   686
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   687
lemma order_eq_refl: "!!x::'a::order. x = y ==> x <= y"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   688
    -- {* This form is useful with the classical reasoner. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   689
  apply (erule ssubst)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   690
  apply (rule order_refl)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   691
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   692
13553
855f6bae851e order_less_irrefl: [simp] -> [iff]
nipkow
parents: 13550
diff changeset
   693
lemma order_less_irrefl [iff]: "~ x < (x::'a::order)"
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   694
  by (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   695
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   696
lemma order_le_less: "((x::'a::order) <= y) = (x < y | x = y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   697
    -- {* NOT suitable for iff, since it can cause PROOF FAILED. *}
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   698
  apply (simp add: order_less_le, blast)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   699
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   700
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   701
lemmas order_le_imp_less_or_eq = order_le_less [THEN iffD1, standard]
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   702
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   703
lemma order_less_imp_le: "!!x::'a::order. x < y ==> x <= y"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   704
  by (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   705
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   706
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   707
text {* Asymmetry. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   708
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   709
lemma order_less_not_sym: "(x::'a::order) < y ==> ~ (y < x)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   710
  by (simp add: order_less_le order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   711
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   712
lemma order_less_asym: "x < (y::'a::order) ==> (~P ==> y < x) ==> P"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   713
  apply (drule order_less_not_sym)
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   714
  apply (erule contrapos_np, simp)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   715
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   716
14295
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   717
lemma order_eq_iff: "!!x::'a::order. (x = y) = (x \<le> y & y \<le> x)"  
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   718
by (blast intro: order_antisym)
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14248
diff changeset
   719
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   720
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   721
text {* Transitivity. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   722
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   723
lemma order_less_trans: "!!x::'a::order. [| x < y; y < z |] ==> x < z"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   724
  apply (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   725
  apply (blast intro: order_trans order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   726
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   727
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   728
lemma order_le_less_trans: "!!x::'a::order. [| x <= y; y < z |] ==> x < z"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   729
  apply (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   730
  apply (blast intro: order_trans order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   731
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   732
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   733
lemma order_less_le_trans: "!!x::'a::order. [| x < y; y <= z |] ==> x < z"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   734
  apply (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   735
  apply (blast intro: order_trans order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   736
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   737
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   738
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   739
text {* Useful for simplification, but too risky to include by default. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   740
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   741
lemma order_less_imp_not_less: "(x::'a::order) < y ==>  (~ y < x) = True"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   742
  by (blast elim: order_less_asym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   743
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   744
lemma order_less_imp_triv: "(x::'a::order) < y ==>  (y < x --> P) = True"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   745
  by (blast elim: order_less_asym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   746
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   747
lemma order_less_imp_not_eq: "(x::'a::order) < y ==>  (x = y) = False"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   748
  by auto
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   749
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   750
lemma order_less_imp_not_eq2: "(x::'a::order) < y ==>  (y = x) = False"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   751
  by auto
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   752
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   753
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   754
text {* Other operators. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   755
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   756
lemma min_leastR: "(!!x::'a::order. least <= x) ==> min x least = least"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   757
  apply (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   758
  apply (blast intro: order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   759
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   760
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   761
lemma max_leastR: "(!!x::'a::order. least <= x) ==> max x least = x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   762
  apply (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   763
  apply (blast intro: order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   764
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   765
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   766
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   767
subsubsection {* Least value operator *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   768
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   769
constdefs
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   770
  Least :: "('a::ord => bool) => 'a"               (binder "LEAST " 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   771
  "Least P == THE x. P x & (ALL y. P y --> x <= y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   772
    -- {* We can no longer use LeastM because the latter requires Hilbert-AC. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   773
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   774
lemma LeastI2:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   775
  "[| P (x::'a::order);
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   776
      !!y. P y ==> x <= y;
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   777
      !!x. [| P x; ALL y. P y --> x \<le> y |] ==> Q x |]
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   778
   ==> Q (Least P)"
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   779
  apply (unfold Least_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   780
  apply (rule theI2)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   781
    apply (blast intro: order_antisym)+
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   782
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   783
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   784
lemma Least_equality:
12281
3bd113b8f7a6 converted simp lemmas;
wenzelm
parents: 12256
diff changeset
   785
    "[| P (k::'a::order); !!x. P x ==> k <= x |] ==> (LEAST x. P x) = k"
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   786
  apply (simp add: Least_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   787
  apply (rule the_equality)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   788
  apply (auto intro!: order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   789
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   790
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   791
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   792
subsubsection "Linear / total orders"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   793
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   794
axclass linorder < order
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   795
  linorder_linear: "x <= y | y <= x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   796
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   797
lemma linorder_less_linear: "!!x::'a::linorder. x<y | x=y | y<x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   798
  apply (simp add: order_less_le)
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   799
  apply (insert linorder_linear, blast)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   800
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   801
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14361
diff changeset
   802
lemma linorder_le_cases [case_names le ge]:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14361
diff changeset
   803
    "((x::'a::linorder) \<le> y ==> P) ==> (y \<le> x ==> P) ==> P"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14361
diff changeset
   804
  by (insert linorder_linear, blast)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14361
diff changeset
   805
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   806
lemma linorder_cases [case_names less equal greater]:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   807
    "((x::'a::linorder) < y ==> P) ==> (x = y ==> P) ==> (y < x ==> P) ==> P"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14361
diff changeset
   808
  by (insert linorder_less_linear, blast)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   809
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   810
lemma linorder_not_less: "!!x::'a::linorder. (~ x < y) = (y <= x)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   811
  apply (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   812
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   813
  apply (blast intro: order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   814
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   815
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   816
lemma linorder_not_le: "!!x::'a::linorder. (~ x <= y) = (y < x)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   817
  apply (simp add: order_less_le)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   818
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   819
  apply (blast intro: order_antisym)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   820
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   821
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   822
lemma linorder_neq_iff: "!!x::'a::linorder. (x ~= y) = (x<y | y<x)"
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   823
by (cut_tac x = x and y = y in linorder_less_linear, auto)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   824
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   825
lemma linorder_neqE: "x ~= (y::'a::linorder) ==> (x < y ==> R) ==> (y < x ==> R) ==> R"
14208
144f45277d5a misc tidying
paulson
parents: 14201
diff changeset
   826
by (simp add: linorder_neq_iff, blast)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   827
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   828
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   829
subsubsection "Min and max on (linear) orders"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   830
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   831
lemma min_same [simp]: "min (x::'a::order) x = x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   832
  by (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   833
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   834
lemma max_same [simp]: "max (x::'a::order) x = x"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   835
  by (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   836
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   837
lemma le_max_iff_disj: "!!z::'a::linorder. (z <= max x y) = (z <= x | z <= y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   838
  apply (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   839
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   840
  apply (blast intro: order_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   841
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   842
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   843
lemma le_maxI1: "(x::'a::linorder) <= max x y"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   844
  by (simp add: le_max_iff_disj)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   845
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   846
lemma le_maxI2: "(y::'a::linorder) <= max x y"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   847
    -- {* CANNOT use with @{text "[intro!]"} because blast will give PROOF FAILED. *}
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   848
  by (simp add: le_max_iff_disj)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   849
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   850
lemma less_max_iff_disj: "!!z::'a::linorder. (z < max x y) = (z < x | z < y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   851
  apply (simp add: max_def order_le_less)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   852
  apply (insert linorder_less_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   853
  apply (blast intro: order_less_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   854
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   855
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   856
lemma max_le_iff_conj [simp]:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   857
    "!!z::'a::linorder. (max x y <= z) = (x <= z & y <= z)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   858
  apply (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   859
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   860
  apply (blast intro: order_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   861
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   862
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   863
lemma max_less_iff_conj [simp]:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   864
    "!!z::'a::linorder. (max x y < z) = (x < z & y < z)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   865
  apply (simp add: order_le_less max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   866
  apply (insert linorder_less_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   867
  apply (blast intro: order_less_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   868
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   869
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   870
lemma le_min_iff_conj [simp]:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   871
    "!!z::'a::linorder. (z <= min x y) = (z <= x & z <= y)"
12892
wenzelm
parents: 12650
diff changeset
   872
    -- {* @{text "[iff]"} screws up a @{text blast} in MiniML *}
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   873
  apply (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   874
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   875
  apply (blast intro: order_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   876
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   877
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   878
lemma min_less_iff_conj [simp]:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   879
    "!!z::'a::linorder. (z < min x y) = (z < x & z < y)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   880
  apply (simp add: order_le_less min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   881
  apply (insert linorder_less_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   882
  apply (blast intro: order_less_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   883
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   884
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   885
lemma min_le_iff_disj: "!!z::'a::linorder. (min x y <= z) = (x <= z | y <= z)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   886
  apply (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   887
  apply (insert linorder_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   888
  apply (blast intro: order_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   889
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   890
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   891
lemma min_less_iff_disj: "!!z::'a::linorder. (min x y < z) = (x < z | y < z)"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   892
  apply (simp add: min_def order_le_less)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   893
  apply (insert linorder_less_linear)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   894
  apply (blast intro: order_less_trans)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   895
  done
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   896
13438
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   897
lemma max_assoc: "!!x::'a::linorder. max (max x y) z = max x (max y z)"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   898
apply(simp add:max_def)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   899
apply(rule conjI)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   900
apply(blast intro:order_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   901
apply(simp add:linorder_not_le)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   902
apply(blast dest: order_less_trans order_le_less_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   903
done
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   904
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   905
lemma max_commute: "!!x::'a::linorder. max x y = max y x"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   906
apply(simp add:max_def)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   907
apply(rule conjI)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   908
apply(blast intro:order_antisym)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   909
apply(simp add:linorder_not_le)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   910
apply(blast dest: order_less_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   911
done
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   912
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   913
lemmas max_ac = max_assoc max_commute
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   914
                mk_left_commute[of max,OF max_assoc max_commute]
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   915
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   916
lemma min_assoc: "!!x::'a::linorder. min (min x y) z = min x (min y z)"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   917
apply(simp add:min_def)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   918
apply(rule conjI)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   919
apply(blast intro:order_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   920
apply(simp add:linorder_not_le)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   921
apply(blast dest: order_less_trans order_le_less_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   922
done
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   923
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   924
lemma min_commute: "!!x::'a::linorder. min x y = min y x"
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   925
apply(simp add:min_def)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   926
apply(rule conjI)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   927
apply(blast intro:order_antisym)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   928
apply(simp add:linorder_not_le)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   929
apply(blast dest: order_less_trans)
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   930
done
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   931
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   932
lemmas min_ac = min_assoc min_commute
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   933
                mk_left_commute[of min,OF min_assoc min_commute]
527811f00c56 added mk_left_commute to HOL.thy and used it "everywhere"
nipkow
parents: 13421
diff changeset
   934
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   935
lemma split_min:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   936
    "P (min (i::'a::linorder) j) = ((i <= j --> P(i)) & (~ i <= j --> P(j)))"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   937
  by (simp add: min_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   938
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   939
lemma split_max:
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   940
    "P (max (i::'a::linorder) j) = ((i <= j --> P(j)) & (~ i <= j --> P(i)))"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   941
  by (simp add: max_def)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   942
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
   943
14398
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   944
subsubsection {* Transitivity rules for calculational reasoning *}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   945
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   946
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   947
lemma order_neq_le_trans: "a ~= b ==> (a::'a::order) <= b ==> a < b"
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   948
  by (simp add: order_less_le)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   949
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   950
lemma order_le_neq_trans: "(a::'a::order) <= b ==> a ~= b ==> a < b"
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   951
  by (simp add: order_less_le)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   952
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   953
lemma order_less_asym': "(a::'a::order) < b ==> b < a ==> P"
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   954
  by (rule order_less_asym)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   955
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   956
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   957
subsubsection {* Setup of transitivity reasoner *}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   958
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   959
lemma less_imp_neq: "[| (x::'a::order) < y |] ==> x ~= y"
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   960
  by (erule contrapos_pn, erule subst, rule order_less_irrefl)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   961
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   962
lemma eq_neq_eq_imp_neq: "[| x = a ; a ~= b; b = y |] ==> x ~= y"
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   963
  by (erule subst, erule ssubst, assumption)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   964
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   965
ML_setup {*
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   966
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   967
structure Trans_Tac = Trans_Tac_Fun (
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   968
  struct
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   969
    val less_reflE = thm "order_less_irrefl" RS thm "notE";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   970
    val le_refl = thm "order_refl";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   971
    val less_imp_le = thm "order_less_imp_le";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   972
    val not_lessI = thm "linorder_not_less" RS thm "iffD2";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   973
    val not_leI = thm "linorder_not_le" RS thm "iffD2";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   974
    val not_lessD = thm "linorder_not_less" RS thm "iffD1";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   975
    val not_leD = thm "linorder_not_le" RS thm "iffD1";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   976
    val eqI = thm "order_antisym";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   977
    val eqD1 = thm "order_eq_refl";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   978
    val eqD2 = thm "sym" RS thm "order_eq_refl";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   979
    val less_trans = thm "order_less_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   980
    val less_le_trans = thm "order_less_le_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   981
    val le_less_trans = thm "order_le_less_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   982
    val le_trans = thm "order_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   983
    val le_neq_trans = thm "order_le_neq_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   984
    val neq_le_trans = thm "order_neq_le_trans";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   985
    val less_imp_neq = thm "less_imp_neq";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   986
    val eq_neq_eq_imp_neq = thm "eq_neq_eq_imp_neq";
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   987
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   988
    fun decomp_gen sort sign (Trueprop $ t) =
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   989
      let fun of_sort t = Sign.of_sort sign (type_of t, sort)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   990
      fun dec (Const ("Not", _) $ t) = (
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   991
              case dec t of
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   992
                None => None
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   993
              | Some (t1, rel, t2) => Some (t1, "~" ^ rel, t2))
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   994
            | dec (Const ("op =",  _) $ t1 $ t2) = 
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   995
                if of_sort t1
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   996
                then Some (t1, "=", t2)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   997
                else None
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   998
            | dec (Const ("op <=",  _) $ t1 $ t2) = 
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
   999
                if of_sort t1
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1000
                then Some (t1, "<=", t2)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1001
                else None
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1002
            | dec (Const ("op <",  _) $ t1 $ t2) = 
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1003
                if of_sort t1
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1004
                then Some (t1, "<", t2)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1005
                else None
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1006
            | dec _ = None
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1007
      in dec t end;
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1008
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1009
    val decomp_part = decomp_gen ["HOL.order"];
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1010
    val decomp_lin = decomp_gen ["HOL.linorder"];
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1011
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1012
  end);  (* struct *)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1013
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1014
Context.>> (fn thy => (simpset_ref_of thy :=
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1015
  simpset_of thy
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1016
    addSolver (mk_solver "Trans_linear" (fn _ => Trans_Tac.linear_tac))
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1017
    addSolver (mk_solver "Trans_partial" (fn _ => Trans_Tac.partial_tac));
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1018
  thy))
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1019
*}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1020
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1021
(* Optional methods
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1022
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1023
method_setup trans_partial =
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1024
  {* Method.no_args (Method.SIMPLE_METHOD' HEADGOAL (trans_tac_partial)) *}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1025
  {* simple transitivity reasoner *}	    
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1026
method_setup trans_linear =
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1027
  {* Method.no_args (Method.SIMPLE_METHOD' HEADGOAL (trans_tac_linear)) *}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1028
  {* simple transitivity reasoner *}
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1029
*)
c5c47703f763 Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents: 14365
diff changeset
  1030
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1031
subsubsection "Bounded quantifiers"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1032
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1033
syntax
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1034
  "_lessAll" :: "[idt, 'a, bool] => bool"   ("(3ALL _<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1035
  "_lessEx"  :: "[idt, 'a, bool] => bool"   ("(3EX _<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1036
  "_leAll"   :: "[idt, 'a, bool] => bool"   ("(3ALL _<=_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1037
  "_leEx"    :: "[idt, 'a, bool] => bool"   ("(3EX _<=_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1038
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 12023
diff changeset
  1039
syntax (xsymbols)
11750
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1040
  "_lessAll" :: "[idt, 'a, bool] => bool"   ("(3\<forall>_<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1041
  "_lessEx"  :: "[idt, 'a, bool] => bool"   ("(3\<exists>_<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1042
  "_leAll"   :: "[idt, 'a, bool] => bool"   ("(3\<forall>_\<le>_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1043
  "_leEx"    :: "[idt, 'a, bool] => bool"   ("(3\<exists>_\<le>_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1044
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1045
syntax (HOL)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1046
  "_lessAll" :: "[idt, 'a, bool] => bool"   ("(3! _<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1047
  "_lessEx"  :: "[idt, 'a, bool] => bool"   ("(3? _<_./ _)"  [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1048
  "_leAll"   :: "[idt, 'a, bool] => bool"   ("(3! _<=_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1049
  "_leEx"    :: "[idt, 'a, bool] => bool"   ("(3? _<=_./ _)" [0, 0, 10] 10)
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1050
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1051
translations
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1052
 "ALL x<y. P"   =>  "ALL x. x < y --> P"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1053
 "EX x<y. P"    =>  "EX x. x < y  & P"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1054
 "ALL x<=y. P"  =>  "ALL x. x <= y --> P"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1055
 "EX x<=y. P"   =>  "EX x. x <= y & P"
3e400964893e judgment Trueprop;
wenzelm
parents: 11724
diff changeset
  1056
14357
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1057
print_translation {*
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1058
let
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1059
  fun all_tr' [Const ("_bound",_) $ Free (v,_), 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1060
               Const("op -->",_) $ (Const ("op <",_) $ (Const ("_bound",_) $ Free (v',_)) $ n ) $ P] = 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1061
  (if v=v' then Syntax.const "_lessAll" $ Syntax.mark_bound v' $ n $ P else raise Match)
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1062
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1063
  | all_tr' [Const ("_bound",_) $ Free (v,_), 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1064
               Const("op -->",_) $ (Const ("op <=",_) $ (Const ("_bound",_) $ Free (v',_)) $ n ) $ P] = 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1065
  (if v=v' then Syntax.const "_leAll" $ Syntax.mark_bound v' $ n $ P else raise Match);
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1066
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1067
  fun ex_tr' [Const ("_bound",_) $ Free (v,_), 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1068
               Const("op &",_) $ (Const ("op <",_) $ (Const ("_bound",_) $ Free (v',_)) $ n ) $ P] = 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1069
  (if v=v' then Syntax.const "_lessEx" $ Syntax.mark_bound v' $ n $ P else raise Match)
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1070
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1071
  | ex_tr' [Const ("_bound",_) $ Free (v,_), 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1072
               Const("op &",_) $ (Const ("op <=",_) $ (Const ("_bound",_) $ Free (v',_)) $ n ) $ P] = 
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1073
  (if v=v' then Syntax.const "_leEx" $ Syntax.mark_bound v' $ n $ P else raise Match)
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1074
in
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1075
[("ALL ", all_tr'), ("EX ", ex_tr')]
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
  1076
end
14357
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1077
*}
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1078
e49d5d5ae66a print translation for ALL x <= n. P x
kleing
parents: 14295
diff changeset
  1079
end