src/HOL/Hilbert_Choice.thy
author kleing
Sat, 30 Apr 2005 14:18:36 +0200
changeset 15900 d6156cb8dc2e
parent 15251 bb6f072c8d10
child 16417 9bc16273c2d4
permissions -rw-r--r--
fixed typo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Hilbert_Choice.thy
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
     2
    ID: $Id$
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
     4
    Copyright   2001  University of Cambridge
12023
wenzelm
parents: 11506
diff changeset
     5
*)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
     6
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
     7
header {* Hilbert's Epsilon-Operator and the Axiom of Choice *}
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14872
diff changeset
     9
theory Hilbert_Choice
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    10
imports NatArith
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14872
diff changeset
    11
files ("Tools/meson.ML") ("Tools/specification_package.ML")
c69542757a4d New theory header syntax.
nipkow
parents: 14872
diff changeset
    12
begin
12298
wenzelm
parents: 12023
diff changeset
    13
wenzelm
parents: 12023
diff changeset
    14
subsection {* Hilbert's epsilon *}
wenzelm
parents: 12023
diff changeset
    15
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    16
consts
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    17
  Eps           :: "('a => bool) => 'a"
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    18
14872
3f2144aebd76 improved symbolic syntax of Eps: \<some> for mode "epsilon";
wenzelm
parents: 14760
diff changeset
    19
syntax (epsilon)
3f2144aebd76 improved symbolic syntax of Eps: \<some> for mode "epsilon";
wenzelm
parents: 14760
diff changeset
    20
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    21
syntax (HOL)
12298
wenzelm
parents: 12023
diff changeset
    22
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3@ _./ _)" [0, 10] 10)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    23
syntax
12298
wenzelm
parents: 12023
diff changeset
    24
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3SOME _./ _)" [0, 10] 10)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    25
translations
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13763
diff changeset
    26
  "SOME x. P" == "Eps (%x. P)"
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    27
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    28
print_translation {*
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    29
(* to avoid eta-contraction of body *)
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    30
[("Eps", fn [Abs abs] =>
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    31
     let val (x,t) = atomic_abs_tr' abs
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    32
     in Syntax.const "_Eps" $ x $ t end)]
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13585
diff changeset
    33
*}
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    34
12298
wenzelm
parents: 12023
diff changeset
    35
axioms
wenzelm
parents: 12023
diff changeset
    36
  someI: "P (x::'a) ==> P (SOME x. P x)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    37
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
    38
12298
wenzelm
parents: 12023
diff changeset
    39
constdefs
wenzelm
parents: 12023
diff changeset
    40
  inv :: "('a => 'b) => ('b => 'a)"
wenzelm
parents: 12023
diff changeset
    41
  "inv(f :: 'a => 'b) == %y. SOME x. f x = y"
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
    42
12298
wenzelm
parents: 12023
diff changeset
    43
  Inv :: "'a set => ('a => 'b) => ('b => 'a)"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    44
  "Inv A f == %x. SOME y. y \<in> A & f y = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    45
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    46
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    47
subsection {*Hilbert's Epsilon-operator*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    48
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    49
text{*Easier to apply than @{text someI} if the witness comes from an
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    50
existential formula*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    51
lemma someI_ex [elim?]: "\<exists>x. P x ==> P (SOME x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    52
apply (erule exE)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    53
apply (erule someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    54
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    55
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    56
text{*Easier to apply than @{text someI} because the conclusion has only one
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    57
occurrence of @{term P}.*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    58
lemma someI2: "[| P a;  !!x. P x ==> Q x |] ==> Q (SOME x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    59
by (blast intro: someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    60
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    61
text{*Easier to apply than @{text someI2} if the witness comes from an
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    62
existential formula*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    63
lemma someI2_ex: "[| \<exists>a. P a; !!x. P x ==> Q x |] ==> Q (SOME x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    64
by (blast intro: someI2)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    65
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    66
lemma some_equality [intro]:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    67
     "[| P a;  !!x. P x ==> x=a |] ==> (SOME x. P x) = a"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    68
by (blast intro: someI2)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    69
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    70
lemma some1_equality: "[| EX!x. P x; P a |] ==> (SOME x. P x) = a"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    71
by (blast intro: some_equality)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    72
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    73
lemma some_eq_ex: "P (SOME x. P x) =  (\<exists>x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    74
by (blast intro: someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    75
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    76
lemma some_eq_trivial [simp]: "(SOME y. y=x) = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    77
apply (rule some_equality)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    78
apply (rule refl, assumption)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    79
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    80
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    81
lemma some_sym_eq_trivial [simp]: "(SOME y. x=y) = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    82
apply (rule some_equality)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    83
apply (rule refl)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    84
apply (erule sym)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    85
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    86
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    87
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    88
subsection{*Axiom of Choice, Proved Using the Description Operator*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    89
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    90
text{*Used in @{text "Tools/meson.ML"}*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    91
lemma choice: "\<forall>x. \<exists>y. Q x y ==> \<exists>f. \<forall>x. Q x (f x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    92
by (fast elim: someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    93
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    94
lemma bchoice: "\<forall>x\<in>S. \<exists>y. Q x y ==> \<exists>f. \<forall>x\<in>S. Q x (f x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    95
by (fast elim: someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    96
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    97
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    98
subsection {*Function Inverse*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
    99
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   100
lemma inv_id [simp]: "inv id = id"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   101
by (simp add: inv_def id_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   102
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   103
text{*A one-to-one function has an inverse.*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   104
lemma inv_f_f [simp]: "inj f ==> inv f (f x) = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   105
by (simp add: inv_def inj_eq)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   106
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   107
lemma inv_f_eq: "[| inj f;  f x = y |] ==> inv f y = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   108
apply (erule subst)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   109
apply (erule inv_f_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   110
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   111
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   112
lemma inj_imp_inv_eq: "[| inj f; \<forall>x. f(g x) = x |] ==> inv f = g"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   113
by (blast intro: ext inv_f_eq)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   114
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   115
text{*But is it useful?*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   116
lemma inj_transfer:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   117
  assumes injf: "inj f" and minor: "!!y. y \<in> range(f) ==> P(inv f y)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   118
  shows "P x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   119
proof -
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   120
  have "f x \<in> range f" by auto
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   121
  hence "P(inv f (f x))" by (rule minor)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   122
  thus "P x" by (simp add: inv_f_f [OF injf])
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   123
qed
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   124
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   125
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   126
lemma inj_iff: "(inj f) = (inv f o f = id)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   127
apply (simp add: o_def expand_fun_eq)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   128
apply (blast intro: inj_on_inverseI inv_f_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   129
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   130
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   131
lemma inj_imp_surj_inv: "inj f ==> surj (inv f)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   132
by (blast intro: surjI inv_f_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   133
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   134
lemma f_inv_f: "y \<in> range(f) ==> f(inv f y) = y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   135
apply (simp add: inv_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   136
apply (fast intro: someI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   137
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   138
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   139
lemma surj_f_inv_f: "surj f ==> f(inv f y) = y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   140
by (simp add: f_inv_f surj_range)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   141
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   142
lemma inv_injective:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   143
  assumes eq: "inv f x = inv f y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   144
      and x: "x: range f"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   145
      and y: "y: range f"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   146
  shows "x=y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   147
proof -
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   148
  have "f (inv f x) = f (inv f y)" using eq by simp
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   149
  thus ?thesis by (simp add: f_inv_f x y) 
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   150
qed
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   151
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   152
lemma inj_on_inv: "A <= range(f) ==> inj_on (inv f) A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   153
by (fast intro: inj_onI elim: inv_injective injD)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   154
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   155
lemma surj_imp_inj_inv: "surj f ==> inj (inv f)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   156
by (simp add: inj_on_inv surj_range)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   157
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   158
lemma surj_iff: "(surj f) = (f o inv f = id)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   159
apply (simp add: o_def expand_fun_eq)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   160
apply (blast intro: surjI surj_f_inv_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   161
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   162
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   163
lemma surj_imp_inv_eq: "[| surj f; \<forall>x. g(f x) = x |] ==> inv f = g"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   164
apply (rule ext)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   165
apply (drule_tac x = "inv f x" in spec)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   166
apply (simp add: surj_f_inv_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   167
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   168
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   169
lemma bij_imp_bij_inv: "bij f ==> bij (inv f)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   170
by (simp add: bij_def inj_imp_surj_inv surj_imp_inj_inv)
12372
cd3a09c7dac9 tuned declarations;
wenzelm
parents: 12298
diff changeset
   171
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   172
lemma inv_equality: "[| !!x. g (f x) = x;  !!y. f (g y) = y |] ==> inv f = g"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   173
apply (rule ext)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   174
apply (auto simp add: inv_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   175
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   176
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   177
lemma inv_inv_eq: "bij f ==> inv (inv f) = f"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   178
apply (rule inv_equality)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   179
apply (auto simp add: bij_def surj_f_inv_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   180
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   181
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   182
(** bij(inv f) implies little about f.  Consider f::bool=>bool such that
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   183
    f(True)=f(False)=True.  Then it's consistent with axiom someI that
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   184
    inv f could be any function at all, including the identity function.
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   185
    If inv f=id then inv f is a bijection, but inj f, surj(f) and
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   186
    inv(inv f)=f all fail.
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   187
**)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   188
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   189
lemma o_inv_distrib: "[| bij f; bij g |] ==> inv (f o g) = inv g o inv f"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   190
apply (rule inv_equality)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   191
apply (auto simp add: bij_def surj_f_inv_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   192
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   193
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   194
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   195
lemma image_surj_f_inv_f: "surj f ==> f ` (inv f ` A) = A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   196
by (simp add: image_eq_UN surj_f_inv_f)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   197
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   198
lemma image_inv_f_f: "inj f ==> (inv f) ` (f ` A) = A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   199
by (simp add: image_eq_UN)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   200
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   201
lemma inv_image_comp: "inj f ==> inv f ` (f`X) = X"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   202
by (auto simp add: image_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   203
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   204
lemma bij_image_Collect_eq: "bij f ==> f ` Collect P = {y. P (inv f y)}"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   205
apply auto
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   206
apply (force simp add: bij_is_inj)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   207
apply (blast intro: bij_is_surj [THEN surj_f_inv_f, symmetric])
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   208
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   209
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   210
lemma bij_vimage_eq_inv_image: "bij f ==> f -` A = inv f ` A" 
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   211
apply (auto simp add: bij_is_surj [THEN surj_f_inv_f])
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   212
apply (blast intro: bij_is_inj [THEN inv_f_f, symmetric])
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   213
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   214
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   215
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   216
subsection {*Inverse of a PI-function (restricted domain)*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   217
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   218
lemma Inv_f_f: "[| inj_on f A;  x \<in> A |] ==> Inv A f (f x) = x"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   219
apply (simp add: Inv_def inj_on_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   220
apply (blast intro: someI2)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   221
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   222
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   223
lemma f_Inv_f: "y \<in> f`A  ==> f (Inv A f y) = y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   224
apply (simp add: Inv_def)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12372
diff changeset
   225
apply (fast intro: someI2)
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 12372
diff changeset
   226
done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   227
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   228
lemma Inv_injective:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   229
  assumes eq: "Inv A f x = Inv A f y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   230
      and x: "x: f`A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   231
      and y: "y: f`A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   232
  shows "x=y"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   233
proof -
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   234
  have "f (Inv A f x) = f (Inv A f y)" using eq by simp
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   235
  thus ?thesis by (simp add: f_Inv_f x y) 
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   236
qed
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   237
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   238
lemma inj_on_Inv: "B <= f`A ==> inj_on (Inv A f) B"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   239
apply (rule inj_onI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   240
apply (blast intro: inj_onI dest: Inv_injective injD)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   241
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   242
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   243
lemma Inv_mem: "[| f ` A = B;  x \<in> B |] ==> Inv A f x \<in> A"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   244
apply (simp add: Inv_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   245
apply (fast intro: someI2)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   246
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   247
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   248
lemma Inv_f_eq: "[| inj_on f A; f x = y; x \<in> A |] ==> Inv A f y = x"
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   249
  apply (erule subst)
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   250
  apply (erule Inv_f_f, assumption)
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   251
  done
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   252
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   253
lemma Inv_comp:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   254
  "[| inj_on f (g ` A); inj_on g A; x \<in> f ` g ` A |] ==>
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   255
  Inv A (f o g) x = (Inv A g o Inv (g ` A) f) x"
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   256
  apply simp
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   257
  apply (rule Inv_f_eq)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   258
    apply (fast intro: comp_inj_on)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   259
   apply (simp add: f_Inv_f Inv_mem)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   260
  apply (simp add: Inv_mem)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   261
  done
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 14208
diff changeset
   262
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   263
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   264
subsection {*Other Consequences of Hilbert's Epsilon*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   265
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   266
text {*Hilbert's Epsilon and the @{term split} Operator*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   267
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   268
text{*Looping simprule*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   269
lemma split_paired_Eps: "(SOME x. P x) = (SOME (a,b). P(a,b))"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   270
by (simp add: split_Pair_apply)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   271
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   272
lemma Eps_split: "Eps (split P) = (SOME xy. P (fst xy) (snd xy))"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   273
by (simp add: split_def)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   274
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   275
lemma Eps_split_eq [simp]: "(@(x',y'). x = x' & y = y') = (x,y)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   276
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   277
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   278
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   279
text{*A relation is wellfounded iff it has no infinite descending chain*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   280
lemma wf_iff_no_infinite_down_chain:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   281
  "wf r = (~(\<exists>f. \<forall>i. (f(Suc i),f i) \<in> r))"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   282
apply (simp only: wf_eq_minimal)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   283
apply (rule iffI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   284
 apply (rule notI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   285
 apply (erule exE)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   286
 apply (erule_tac x = "{w. \<exists>i. w=f i}" in allE, blast)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   287
apply (erule contrapos_np, simp, clarify)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   288
apply (subgoal_tac "\<forall>n. nat_rec x (%i y. @z. z:Q & (z,y) :r) n \<in> Q")
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   289
 apply (rule_tac x = "nat_rec x (%i y. @z. z:Q & (z,y) :r)" in exI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   290
 apply (rule allI, simp)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   291
 apply (rule someI2_ex, blast, blast)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   292
apply (rule allI)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   293
apply (induct_tac "n", simp_all)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   294
apply (rule someI2_ex, blast+)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   295
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   296
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   297
text{*A dynamically-scoped fact for TFL *}
12298
wenzelm
parents: 12023
diff changeset
   298
lemma tfl_some: "\<forall>P x. P x --> P (Eps P)"
wenzelm
parents: 12023
diff changeset
   299
  by (blast intro: someI)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   300
12298
wenzelm
parents: 12023
diff changeset
   301
wenzelm
parents: 12023
diff changeset
   302
subsection {* Least value operator *}
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   303
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   304
constdefs
12298
wenzelm
parents: 12023
diff changeset
   305
  LeastM :: "['a => 'b::ord, 'a => bool] => 'a"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   306
  "LeastM m P == SOME x. P x & (\<forall>y. P y --> m x <= m y)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   307
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   308
syntax
12298
wenzelm
parents: 12023
diff changeset
   309
  "_LeastM" :: "[pttrn, 'a => 'b::ord, bool] => 'a"    ("LEAST _ WRT _. _" [0, 4, 10] 10)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   310
translations
12298
wenzelm
parents: 12023
diff changeset
   311
  "LEAST x WRT m. P" == "LeastM m (%x. P)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   312
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   313
lemma LeastMI2:
12298
wenzelm
parents: 12023
diff changeset
   314
  "P x ==> (!!y. P y ==> m x <= m y)
wenzelm
parents: 12023
diff changeset
   315
    ==> (!!x. P x ==> \<forall>y. P y --> m x \<le> m y ==> Q x)
wenzelm
parents: 12023
diff changeset
   316
    ==> Q (LeastM m P)"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   317
  apply (simp add: LeastM_def)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   318
  apply (rule someI2_ex, blast, blast)
12298
wenzelm
parents: 12023
diff changeset
   319
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   320
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   321
lemma LeastM_equality:
12298
wenzelm
parents: 12023
diff changeset
   322
  "P k ==> (!!x. P x ==> m k <= m x)
wenzelm
parents: 12023
diff changeset
   323
    ==> m (LEAST x WRT m. P x) = (m k::'a::order)"
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   324
  apply (rule LeastMI2, assumption, blast)
12298
wenzelm
parents: 12023
diff changeset
   325
  apply (blast intro!: order_antisym)
wenzelm
parents: 12023
diff changeset
   326
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   327
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   328
lemma wf_linord_ex_has_least:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   329
  "wf r ==> \<forall>x y. ((x,y):r^+) = ((y,x)~:r^*) ==> P k
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   330
    ==> \<exists>x. P x & (!y. P y --> (m x,m y):r^*)"
12298
wenzelm
parents: 12023
diff changeset
   331
  apply (drule wf_trancl [THEN wf_eq_minimal [THEN iffD1]])
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   332
  apply (drule_tac x = "m`Collect P" in spec, force)
12298
wenzelm
parents: 12023
diff changeset
   333
  done
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   334
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   335
lemma ex_has_least_nat:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   336
    "P k ==> \<exists>x. P x & (\<forall>y. P y --> m x <= (m y::nat))"
12298
wenzelm
parents: 12023
diff changeset
   337
  apply (simp only: pred_nat_trancl_eq_le [symmetric])
wenzelm
parents: 12023
diff changeset
   338
  apply (rule wf_pred_nat [THEN wf_linord_ex_has_least])
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   339
   apply (simp add: less_eq not_le_iff_less pred_nat_trancl_eq_le, assumption)
12298
wenzelm
parents: 12023
diff changeset
   340
  done
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   341
12298
wenzelm
parents: 12023
diff changeset
   342
lemma LeastM_nat_lemma:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   343
    "P k ==> P (LeastM m P) & (\<forall>y. P y --> m (LeastM m P) <= (m y::nat))"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   344
  apply (simp add: LeastM_def)
12298
wenzelm
parents: 12023
diff changeset
   345
  apply (rule someI_ex)
wenzelm
parents: 12023
diff changeset
   346
  apply (erule ex_has_least_nat)
wenzelm
parents: 12023
diff changeset
   347
  done
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   348
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   349
lemmas LeastM_natI = LeastM_nat_lemma [THEN conjunct1, standard]
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   350
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   351
lemma LeastM_nat_le: "P x ==> m (LeastM m P) <= (m x::nat)"
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   352
by (rule LeastM_nat_lemma [THEN conjunct2, THEN spec, THEN mp], assumption, assumption)
11454
7514e5e21cb8 Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
paulson
parents: 11451
diff changeset
   353
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   354
12298
wenzelm
parents: 12023
diff changeset
   355
subsection {* Greatest value operator *}
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   356
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   357
constdefs
12298
wenzelm
parents: 12023
diff changeset
   358
  GreatestM :: "['a => 'b::ord, 'a => bool] => 'a"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   359
  "GreatestM m P == SOME x. P x & (\<forall>y. P y --> m y <= m x)"
12298
wenzelm
parents: 12023
diff changeset
   360
wenzelm
parents: 12023
diff changeset
   361
  Greatest :: "('a::ord => bool) => 'a"    (binder "GREATEST " 10)
wenzelm
parents: 12023
diff changeset
   362
  "Greatest == GreatestM (%x. x)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   363
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   364
syntax
12298
wenzelm
parents: 12023
diff changeset
   365
  "_GreatestM" :: "[pttrn, 'a=>'b::ord, bool] => 'a"
wenzelm
parents: 12023
diff changeset
   366
      ("GREATEST _ WRT _. _" [0, 4, 10] 10)
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   367
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   368
translations
12298
wenzelm
parents: 12023
diff changeset
   369
  "GREATEST x WRT m. P" == "GreatestM m (%x. P)"
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   370
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   371
lemma GreatestMI2:
12298
wenzelm
parents: 12023
diff changeset
   372
  "P x ==> (!!y. P y ==> m y <= m x)
wenzelm
parents: 12023
diff changeset
   373
    ==> (!!x. P x ==> \<forall>y. P y --> m y \<le> m x ==> Q x)
wenzelm
parents: 12023
diff changeset
   374
    ==> Q (GreatestM m P)"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   375
  apply (simp add: GreatestM_def)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   376
  apply (rule someI2_ex, blast, blast)
12298
wenzelm
parents: 12023
diff changeset
   377
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   378
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   379
lemma GreatestM_equality:
12298
wenzelm
parents: 12023
diff changeset
   380
 "P k ==> (!!x. P x ==> m x <= m k)
wenzelm
parents: 12023
diff changeset
   381
    ==> m (GREATEST x WRT m. P x) = (m k::'a::order)"
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   382
  apply (rule_tac m = m in GreatestMI2, assumption, blast)
12298
wenzelm
parents: 12023
diff changeset
   383
  apply (blast intro!: order_antisym)
wenzelm
parents: 12023
diff changeset
   384
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   385
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   386
lemma Greatest_equality:
12298
wenzelm
parents: 12023
diff changeset
   387
  "P (k::'a::order) ==> (!!x. P x ==> x <= k) ==> (GREATEST x. P x) = k"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   388
  apply (simp add: Greatest_def)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   389
  apply (erule GreatestM_equality, blast)
12298
wenzelm
parents: 12023
diff changeset
   390
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   391
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   392
lemma ex_has_greatest_nat_lemma:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   393
  "P k ==> \<forall>x. P x --> (\<exists>y. P y & ~ ((m y::nat) <= m x))
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   394
    ==> \<exists>y. P y & ~ (m y < m k + n)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   395
  apply (induct n, force)
12298
wenzelm
parents: 12023
diff changeset
   396
  apply (force simp add: le_Suc_eq)
wenzelm
parents: 12023
diff changeset
   397
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   398
12298
wenzelm
parents: 12023
diff changeset
   399
lemma ex_has_greatest_nat:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   400
  "P k ==> \<forall>y. P y --> m y < b
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   401
    ==> \<exists>x. P x & (\<forall>y. P y --> (m y::nat) <= m x)"
12298
wenzelm
parents: 12023
diff changeset
   402
  apply (rule ccontr)
wenzelm
parents: 12023
diff changeset
   403
  apply (cut_tac P = P and n = "b - m k" in ex_has_greatest_nat_lemma)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   404
    apply (subgoal_tac [3] "m k <= b", auto)
12298
wenzelm
parents: 12023
diff changeset
   405
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   406
12298
wenzelm
parents: 12023
diff changeset
   407
lemma GreatestM_nat_lemma:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   408
  "P k ==> \<forall>y. P y --> m y < b
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   409
    ==> P (GreatestM m P) & (\<forall>y. P y --> (m y::nat) <= m (GreatestM m P))"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   410
  apply (simp add: GreatestM_def)
12298
wenzelm
parents: 12023
diff changeset
   411
  apply (rule someI_ex)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   412
  apply (erule ex_has_greatest_nat, assumption)
12298
wenzelm
parents: 12023
diff changeset
   413
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   414
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   415
lemmas GreatestM_natI = GreatestM_nat_lemma [THEN conjunct1, standard]
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   416
12298
wenzelm
parents: 12023
diff changeset
   417
lemma GreatestM_nat_le:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   418
  "P x ==> \<forall>y. P y --> m y < b
12298
wenzelm
parents: 12023
diff changeset
   419
    ==> (m x::nat) <= m (GreatestM m P)"
wenzelm
parents: 12023
diff changeset
   420
  apply (blast dest: GreatestM_nat_lemma [THEN conjunct2, THEN spec])
wenzelm
parents: 12023
diff changeset
   421
  done
wenzelm
parents: 12023
diff changeset
   422
wenzelm
parents: 12023
diff changeset
   423
wenzelm
parents: 12023
diff changeset
   424
text {* \medskip Specialization to @{text GREATEST}. *}
wenzelm
parents: 12023
diff changeset
   425
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   426
lemma GreatestI: "P (k::nat) ==> \<forall>y. P y --> y < b ==> P (GREATEST x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   427
  apply (simp add: Greatest_def)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   428
  apply (rule GreatestM_natI, auto)
12298
wenzelm
parents: 12023
diff changeset
   429
  done
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   430
12298
wenzelm
parents: 12023
diff changeset
   431
lemma Greatest_le:
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   432
    "P x ==> \<forall>y. P y --> y < b ==> (x::nat) <= (GREATEST x. P x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   433
  apply (simp add: Greatest_def)
14208
144f45277d5a misc tidying
paulson
parents: 14115
diff changeset
   434
  apply (rule GreatestM_nat_le, auto)
12298
wenzelm
parents: 12023
diff changeset
   435
  done
wenzelm
parents: 12023
diff changeset
   436
wenzelm
parents: 12023
diff changeset
   437
wenzelm
parents: 12023
diff changeset
   438
subsection {* The Meson proof procedure *}
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   439
12298
wenzelm
parents: 12023
diff changeset
   440
subsubsection {* Negation Normal Form *}
wenzelm
parents: 12023
diff changeset
   441
wenzelm
parents: 12023
diff changeset
   442
text {* de Morgan laws *}
wenzelm
parents: 12023
diff changeset
   443
wenzelm
parents: 12023
diff changeset
   444
lemma meson_not_conjD: "~(P&Q) ==> ~P | ~Q"
wenzelm
parents: 12023
diff changeset
   445
  and meson_not_disjD: "~(P|Q) ==> ~P & ~Q"
wenzelm
parents: 12023
diff changeset
   446
  and meson_not_notD: "~~P ==> P"
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   447
  and meson_not_allD: "!!P. ~(\<forall>x. P(x)) ==> \<exists>x. ~P(x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   448
  and meson_not_exD: "!!P. ~(\<exists>x. P(x)) ==> \<forall>x. ~P(x)"
12298
wenzelm
parents: 12023
diff changeset
   449
  by fast+
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   450
12298
wenzelm
parents: 12023
diff changeset
   451
text {* Removal of @{text "-->"} and @{text "<->"} (positive and
wenzelm
parents: 12023
diff changeset
   452
negative occurrences) *}
wenzelm
parents: 12023
diff changeset
   453
wenzelm
parents: 12023
diff changeset
   454
lemma meson_imp_to_disjD: "P-->Q ==> ~P | Q"
wenzelm
parents: 12023
diff changeset
   455
  and meson_not_impD: "~(P-->Q) ==> P & ~Q"
wenzelm
parents: 12023
diff changeset
   456
  and meson_iff_to_disjD: "P=Q ==> (~P | Q) & (~Q | P)"
wenzelm
parents: 12023
diff changeset
   457
  and meson_not_iffD: "~(P=Q) ==> (P | Q) & (~P | ~Q)"
wenzelm
parents: 12023
diff changeset
   458
    -- {* Much more efficient than @{prop "(P & ~Q) | (Q & ~P)"} for computing CNF *}
wenzelm
parents: 12023
diff changeset
   459
  by fast+
wenzelm
parents: 12023
diff changeset
   460
wenzelm
parents: 12023
diff changeset
   461
wenzelm
parents: 12023
diff changeset
   462
subsubsection {* Pulling out the existential quantifiers *}
wenzelm
parents: 12023
diff changeset
   463
wenzelm
parents: 12023
diff changeset
   464
text {* Conjunction *}
wenzelm
parents: 12023
diff changeset
   465
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   466
lemma meson_conj_exD1: "!!P Q. (\<exists>x. P(x)) & Q ==> \<exists>x. P(x) & Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   467
  and meson_conj_exD2: "!!P Q. P & (\<exists>x. Q(x)) ==> \<exists>x. P & Q(x)"
12298
wenzelm
parents: 12023
diff changeset
   468
  by fast+
wenzelm
parents: 12023
diff changeset
   469
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   470
12298
wenzelm
parents: 12023
diff changeset
   471
text {* Disjunction *}
wenzelm
parents: 12023
diff changeset
   472
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   473
lemma meson_disj_exD: "!!P Q. (\<exists>x. P(x)) | (\<exists>x. Q(x)) ==> \<exists>x. P(x) | Q(x)"
12298
wenzelm
parents: 12023
diff changeset
   474
  -- {* DO NOT USE with forall-Skolemization: makes fewer schematic variables!! *}
wenzelm
parents: 12023
diff changeset
   475
  -- {* With ex-Skolemization, makes fewer Skolem constants *}
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   476
  and meson_disj_exD1: "!!P Q. (\<exists>x. P(x)) | Q ==> \<exists>x. P(x) | Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   477
  and meson_disj_exD2: "!!P Q. P | (\<exists>x. Q(x)) ==> \<exists>x. P | Q(x)"
12298
wenzelm
parents: 12023
diff changeset
   478
  by fast+
wenzelm
parents: 12023
diff changeset
   479
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   480
12298
wenzelm
parents: 12023
diff changeset
   481
subsubsection {* Generating clauses for the Meson Proof Procedure *}
wenzelm
parents: 12023
diff changeset
   482
wenzelm
parents: 12023
diff changeset
   483
text {* Disjunctions *}
wenzelm
parents: 12023
diff changeset
   484
wenzelm
parents: 12023
diff changeset
   485
lemma meson_disj_assoc: "(P|Q)|R ==> P|(Q|R)"
wenzelm
parents: 12023
diff changeset
   486
  and meson_disj_comm: "P|Q ==> Q|P"
wenzelm
parents: 12023
diff changeset
   487
  and meson_disj_FalseD1: "False|P ==> P"
wenzelm
parents: 12023
diff changeset
   488
  and meson_disj_FalseD2: "P|False ==> P"
wenzelm
parents: 12023
diff changeset
   489
  by fast+
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   490
14760
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   491
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   492
subsection{*Lemmas for Meson, the Model Elimination Procedure*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   493
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   494
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   495
text{* Generation of contrapositives *}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   496
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   497
text{*Inserts negated disjunct after removing the negation; P is a literal.
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   498
  Model elimination requires assuming the negation of every attempted subgoal,
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   499
  hence the negated disjuncts.*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   500
lemma make_neg_rule: "~P|Q ==> ((~P==>P) ==> Q)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   501
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   502
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   503
text{*Version for Plaisted's "Postive refinement" of the Meson procedure*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   504
lemma make_refined_neg_rule: "~P|Q ==> (P ==> Q)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   505
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   506
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   507
text{*@{term P} should be a literal*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   508
lemma make_pos_rule: "P|Q ==> ((P==>~P) ==> Q)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   509
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   510
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   511
text{*Versions of @{text make_neg_rule} and @{text make_pos_rule} that don't
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   512
insert new assumptions, for ordinary resolution.*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   513
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   514
lemmas make_neg_rule' = make_refined_neg_rule
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   515
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   516
lemma make_pos_rule': "[|P|Q; ~P|] ==> Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   517
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   518
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   519
text{* Generation of a goal clause -- put away the final literal *}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   520
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   521
lemma make_neg_goal: "~P ==> ((~P==>P) ==> False)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   522
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   523
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   524
lemma make_pos_goal: "P ==> ((P==>~P) ==> False)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   525
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   526
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   527
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   528
subsubsection{* Lemmas for Forward Proof*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   529
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   530
text{*There is a similarity to congruence rules*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   531
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   532
(*NOTE: could handle conjunctions (faster?) by
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   533
    nf(th RS conjunct2) RS (nf(th RS conjunct1) RS conjI) *)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   534
lemma conj_forward: "[| P'&Q';  P' ==> P;  Q' ==> Q |] ==> P&Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   535
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   536
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   537
lemma disj_forward: "[| P'|Q';  P' ==> P;  Q' ==> Q |] ==> P|Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   538
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   539
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   540
(*Version of @{text disj_forward} for removal of duplicate literals*)
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   541
lemma disj_forward2:
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   542
    "[| P'|Q';  P' ==> P;  [| Q'; P==>False |] ==> Q |] ==> P|Q"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   543
apply blast 
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   544
done
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   545
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   546
lemma all_forward: "[| \<forall>x. P'(x);  !!x. P'(x) ==> P(x) |] ==> \<forall>x. P(x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   547
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   548
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   549
lemma ex_forward: "[| \<exists>x. P'(x);  !!x. P'(x) ==> P(x) |] ==> \<exists>x. P(x)"
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   550
by blast
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   551
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   552
ML
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   553
{*
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   554
val inv_def = thm "inv_def";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   555
val Inv_def = thm "Inv_def";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   556
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   557
val someI = thm "someI";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   558
val someI_ex = thm "someI_ex";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   559
val someI2 = thm "someI2";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   560
val someI2_ex = thm "someI2_ex";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   561
val some_equality = thm "some_equality";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   562
val some1_equality = thm "some1_equality";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   563
val some_eq_ex = thm "some_eq_ex";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   564
val some_eq_trivial = thm "some_eq_trivial";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   565
val some_sym_eq_trivial = thm "some_sym_eq_trivial";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   566
val choice = thm "choice";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   567
val bchoice = thm "bchoice";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   568
val inv_id = thm "inv_id";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   569
val inv_f_f = thm "inv_f_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   570
val inv_f_eq = thm "inv_f_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   571
val inj_imp_inv_eq = thm "inj_imp_inv_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   572
val inj_transfer = thm "inj_transfer";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   573
val inj_iff = thm "inj_iff";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   574
val inj_imp_surj_inv = thm "inj_imp_surj_inv";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   575
val f_inv_f = thm "f_inv_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   576
val surj_f_inv_f = thm "surj_f_inv_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   577
val inv_injective = thm "inv_injective";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   578
val inj_on_inv = thm "inj_on_inv";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   579
val surj_imp_inj_inv = thm "surj_imp_inj_inv";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   580
val surj_iff = thm "surj_iff";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   581
val surj_imp_inv_eq = thm "surj_imp_inv_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   582
val bij_imp_bij_inv = thm "bij_imp_bij_inv";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   583
val inv_equality = thm "inv_equality";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   584
val inv_inv_eq = thm "inv_inv_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   585
val o_inv_distrib = thm "o_inv_distrib";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   586
val image_surj_f_inv_f = thm "image_surj_f_inv_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   587
val image_inv_f_f = thm "image_inv_f_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   588
val inv_image_comp = thm "inv_image_comp";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   589
val bij_image_Collect_eq = thm "bij_image_Collect_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   590
val bij_vimage_eq_inv_image = thm "bij_vimage_eq_inv_image";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   591
val Inv_f_f = thm "Inv_f_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   592
val f_Inv_f = thm "f_Inv_f";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   593
val Inv_injective = thm "Inv_injective";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   594
val inj_on_Inv = thm "inj_on_Inv";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   595
val split_paired_Eps = thm "split_paired_Eps";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   596
val Eps_split = thm "Eps_split";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   597
val Eps_split_eq = thm "Eps_split_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   598
val wf_iff_no_infinite_down_chain = thm "wf_iff_no_infinite_down_chain";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   599
val Inv_mem = thm "Inv_mem";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   600
val Inv_f_eq = thm "Inv_f_eq";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   601
val Inv_comp = thm "Inv_comp";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   602
val tfl_some = thm "tfl_some";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   603
val make_neg_rule = thm "make_neg_rule";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   604
val make_refined_neg_rule = thm "make_refined_neg_rule";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   605
val make_pos_rule = thm "make_pos_rule";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   606
val make_neg_rule' = thm "make_neg_rule'";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   607
val make_pos_rule' = thm "make_pos_rule'";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   608
val make_neg_goal = thm "make_neg_goal";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   609
val make_pos_goal = thm "make_pos_goal";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   610
val conj_forward = thm "conj_forward";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   611
val disj_forward = thm "disj_forward";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   612
val disj_forward2 = thm "disj_forward2";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   613
val all_forward = thm "all_forward";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   614
val ex_forward = thm "ex_forward";
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   615
*}
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   616
a08e916f4946 conversion of Hilbert_Choice to Isar script
paulson
parents: 14399
diff changeset
   617
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   618
use "Tools/meson.ML"
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   619
setup meson_setup
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   620
14115
65ec3f73d00b Added package for definition by specification.
skalberg
parents: 13764
diff changeset
   621
use "Tools/specification_package.ML"
65ec3f73d00b Added package for definition by specification.
skalberg
parents: 13764
diff changeset
   622
11451
8abfb4f7bd02 partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
diff changeset
   623
end