src/ZF/Constructible/Wellorderings.thy
author paulson
Thu, 04 Jul 2002 18:29:50 +0200
changeset 13299 3a932abf97e8
parent 13298 b4f370679c65
child 13306 6eebcddee32b
permissions -rw-r--r--
More use of relativized quantifiers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     1
header {*Relativized Wellorderings*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     2
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     3
theory Wellorderings = Relative:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     4
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     5
text{*We define functions analogous to @{term ordermap} @{term ordertype} 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     6
      but without using recursion.  Instead, there is a direct appeal
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     7
      to Replacement.  This will be the basis for a version relativized
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     8
      to some class @{text M}.  The main result is Theorem I 7.6 in Kunen,
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
     9
      page 17.*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    10
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    11
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    12
subsection{*Wellorderings*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    13
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    14
constdefs
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    15
  irreflexive :: "[i=>o,i,i]=>o"
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    16
    "irreflexive(M,A,r) == \<forall>x[M]. x\<in>A --> <x,x> \<notin> r"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    17
  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    18
  transitive_rel :: "[i=>o,i,i]=>o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    19
    "transitive_rel(M,A,r) == 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    20
	\<forall>x[M]. x\<in>A --> (\<forall>y[M]. y\<in>A --> (\<forall>z[M]. z\<in>A --> 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    21
                          <x,y>\<in>r --> <y,z>\<in>r --> <x,z>\<in>r))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    22
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    23
  linear_rel :: "[i=>o,i,i]=>o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    24
    "linear_rel(M,A,r) == 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    25
	\<forall>x[M]. x\<in>A --> (\<forall>y[M]. y\<in>A --> <x,y>\<in>r | x=y | <y,x>\<in>r)"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    26
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    27
  wellfounded :: "[i=>o,i]=>o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    28
    --{*EVERY non-empty set has an @{text r}-minimal element*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    29
    "wellfounded(M,r) == 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    30
	\<forall>x[M]. ~ empty(M,x) 
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    31
                 --> (\<exists>y[M]. y\<in>x & ~(\<exists>z[M]. z\<in>x & <z,y> \<in> r))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    32
  wellfounded_on :: "[i=>o,i,i]=>o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    33
    --{*every non-empty SUBSET OF @{text A} has an @{text r}-minimal element*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    34
    "wellfounded_on(M,A,r) == 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    35
	\<forall>x[M]. ~ empty(M,x) --> subset(M,x,A)
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    36
                 --> (\<exists>y[M]. y\<in>x & ~(\<exists>z[M]. z\<in>x & <z,y> \<in> r))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    37
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    38
  wellordered :: "[i=>o,i,i]=>o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    39
    --{*every non-empty subset of @{text A} has an @{text r}-minimal element*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    40
    "wellordered(M,A,r) == 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    41
	transitive_rel(M,A,r) & linear_rel(M,A,r) & wellfounded_on(M,A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    42
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    43
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    44
subsubsection {*Trivial absoluteness proofs*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    45
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    46
lemma (in M_axioms) irreflexive_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    47
     "M(A) ==> irreflexive(M,A,r) <-> irrefl(A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    48
by (simp add: irreflexive_def irrefl_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    49
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    50
lemma (in M_axioms) transitive_rel_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    51
     "M(A) ==> transitive_rel(M,A,r) <-> trans[A](r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    52
by (simp add: transitive_rel_def trans_on_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    53
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    54
lemma (in M_axioms) linear_rel_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    55
     "M(A) ==> linear_rel(M,A,r) <-> linear(A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    56
by (simp add: linear_rel_def linear_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    57
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    58
lemma (in M_axioms) wellordered_is_trans_on: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    59
    "[| wellordered(M,A,r); M(A) |] ==> trans[A](r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    60
by (auto simp add: wellordered_def )
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    61
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    62
lemma (in M_axioms) wellordered_is_linear: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    63
    "[| wellordered(M,A,r); M(A) |] ==> linear(A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    64
by (auto simp add: wellordered_def )
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    65
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    66
lemma (in M_axioms) wellordered_is_wellfounded_on: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    67
    "[| wellordered(M,A,r); M(A) |] ==> wellfounded_on(M,A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    68
by (auto simp add: wellordered_def )
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    69
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    70
lemma (in M_axioms) wellfounded_imp_wellfounded_on: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    71
    "[| wellfounded(M,r); M(A) |] ==> wellfounded_on(M,A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    72
by (auto simp add: wellfounded_def wellfounded_on_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    73
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    74
lemma (in M_axioms) wellfounded_on_subset_A:
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    75
     "[| wellfounded_on(M,A,r);  B<=A |] ==> wellfounded_on(M,B,r)"
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    76
by (simp add: wellfounded_on_def, blast)
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    77
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    78
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    79
subsubsection {*Well-founded relations*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    80
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    81
lemma  (in M_axioms) wellfounded_on_iff_wellfounded:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    82
     "wellfounded_on(M,A,r) <-> wellfounded(M, r \<inter> A*A)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    83
apply (simp add: wellfounded_on_def wellfounded_def, safe)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    84
 apply blast 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
    85
apply (drule_tac x=x in rspec, assumption, blast) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    86
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
    87
13247
e3c289f0724b towards absoluteness of wfrec-defined functions
paulson
parents: 13245
diff changeset
    88
lemma (in M_axioms) wellfounded_on_imp_wellfounded:
e3c289f0724b towards absoluteness of wfrec-defined functions
paulson
parents: 13245
diff changeset
    89
     "[|wellfounded_on(M,A,r); r \<subseteq> A*A|] ==> wellfounded(M,r)"
e3c289f0724b towards absoluteness of wfrec-defined functions
paulson
parents: 13245
diff changeset
    90
by (simp add: wellfounded_on_iff_wellfounded subset_Int_iff)
e3c289f0724b towards absoluteness of wfrec-defined functions
paulson
parents: 13245
diff changeset
    91
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    92
lemma (in M_axioms) wellfounded_on_field_imp_wellfounded:
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    93
     "wellfounded_on(M, field(r), r) ==> wellfounded(M,r)"
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    94
by (simp add: wellfounded_def wellfounded_on_iff_wellfounded, fast)
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    95
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    96
lemma (in M_axioms) wellfounded_iff_wellfounded_on_field:
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    97
     "M(r) ==> wellfounded(M,r) <-> wellfounded_on(M, field(r), r)"
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    98
by (blast intro: wellfounded_imp_wellfounded_on
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
    99
                 wellfounded_on_field_imp_wellfounded)
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13251
diff changeset
   100
13251
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   101
(*Consider the least z in domain(r) such that P(z) does not hold...*)
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   102
lemma (in M_axioms) wellfounded_induct: 
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   103
     "[| wellfounded(M,r); M(a); M(r); separation(M, \<lambda>x. ~P(x));  
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   104
         \<forall>x. M(x) & (\<forall>y. <y,x> \<in> r --> P(y)) --> P(x) |]
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   105
      ==> P(a)";
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   106
apply (simp (no_asm_use) add: wellfounded_def)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   107
apply (drule_tac x="{z \<in> domain(r). ~P(z)}" in rspec)
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   108
apply (blast dest: transM)+
13251
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   109
done
74cb2af8811e new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents: 13247
diff changeset
   110
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   111
lemma (in M_axioms) wellfounded_on_induct: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   112
     "[| a\<in>A;  wellfounded_on(M,A,r);  M(A);  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   113
       separation(M, \<lambda>x. x\<in>A --> ~P(x));  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   114
       \<forall>x\<in>A. M(x) & (\<forall>y\<in>A. <y,x> \<in> r --> P(y)) --> P(x) |]
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   115
      ==> P(a)";
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   116
apply (simp (no_asm_use) add: wellfounded_on_def)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   117
apply (drule_tac x="{z\<in>A. z\<in>A --> ~P(z)}" in rspec)
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   118
apply (blast intro: transM)+
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   119
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   120
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   121
text{*The assumption @{term "r \<subseteq> A*A"} justifies strengthening the induction
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   122
      hypothesis by removing the restriction to @{term A}.*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   123
lemma (in M_axioms) wellfounded_on_induct2: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   124
     "[| a\<in>A;  wellfounded_on(M,A,r);  M(A);  r \<subseteq> A*A;  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   125
       separation(M, \<lambda>x. x\<in>A --> ~P(x));  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   126
       \<forall>x\<in>A. M(x) & (\<forall>y. <y,x> \<in> r --> P(y)) --> P(x) |]
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   127
      ==> P(a)";
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   128
by (rule wellfounded_on_induct, assumption+, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   129
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   130
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   131
subsubsection {*Kunen's lemma IV 3.14, page 123*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   132
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   133
lemma (in M_axioms) linear_imp_relativized: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   134
     "linear(A,r) ==> linear_rel(M,A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   135
by (simp add: linear_def linear_rel_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   136
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   137
lemma (in M_axioms) trans_on_imp_relativized: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   138
     "trans[A](r) ==> transitive_rel(M,A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   139
by (unfold transitive_rel_def trans_on_def, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   140
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   141
lemma (in M_axioms) wf_on_imp_relativized: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   142
     "wf[A](r) ==> wellfounded_on(M,A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   143
apply (simp add: wellfounded_on_def wf_def wf_on_def, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   144
apply (drule_tac x="x" in spec, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   145
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   146
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   147
lemma (in M_axioms) wf_imp_relativized: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   148
     "wf(r) ==> wellfounded(M,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   149
apply (simp add: wellfounded_def wf_def, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   150
apply (drule_tac x="x" in spec, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   151
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   152
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   153
lemma (in M_axioms) well_ord_imp_relativized: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   154
     "well_ord(A,r) ==> wellordered(M,A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   155
by (simp add: wellordered_def well_ord_def tot_ord_def part_ord_def
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   156
       linear_imp_relativized trans_on_imp_relativized wf_on_imp_relativized)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   157
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   158
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   159
subsection{* Relativized versions of order-isomorphisms and order types *}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   160
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   161
lemma (in M_axioms) order_isomorphism_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   162
     "[| M(A); M(B); M(f) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   163
      ==> order_isomorphism(M,A,r,B,s,f) <-> f \<in> ord_iso(A,r,B,s)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   164
by (simp add: typed_apply_abs [OF bij_is_fun] apply_closed 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   165
              order_isomorphism_def ord_iso_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   166
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   167
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   168
lemma (in M_axioms) pred_set_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   169
     "[| M(r); M(B) |] ==> pred_set(M,A,x,r,B) <-> B = Order.pred(A,x,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   170
apply (simp add: pred_set_def Order.pred_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   171
apply (blast dest: transM) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   172
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   173
13245
714f7a423a15 development and tweaks
paulson
parents: 13223
diff changeset
   174
lemma (in M_axioms) pred_closed [intro,simp]: 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   175
     "[| M(A); M(r); M(x) |] ==> M(Order.pred(A,x,r))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   176
apply (simp add: Order.pred_def) 
13245
714f7a423a15 development and tweaks
paulson
parents: 13223
diff changeset
   177
apply (insert pred_separation [of r x], simp) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   178
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   179
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   180
lemma (in M_axioms) membership_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   181
     "[| M(r); M(A) |] ==> membership(M,A,r) <-> r = Memrel(A)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   182
apply (simp add: membership_def Memrel_def, safe)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   183
  apply (rule equalityI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   184
   apply clarify 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   185
   apply (frule transM, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   186
   apply blast
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   187
  apply clarify 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   188
  apply (subgoal_tac "M(<xb,ya>)", blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   189
  apply (blast dest: transM) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   190
 apply auto 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   191
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   192
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   193
lemma (in M_axioms) M_Memrel_iff:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   194
     "M(A) ==> 
13298
b4f370679c65 Constructible: some separation axioms
paulson
parents: 13295
diff changeset
   195
      Memrel(A) = {z \<in> A*A. \<exists>x[M]. \<exists>y[M]. z = \<langle>x,y\<rangle> & x \<in> y}"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   196
apply (simp add: Memrel_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   197
apply (blast dest: transM)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   198
done 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   199
13245
714f7a423a15 development and tweaks
paulson
parents: 13223
diff changeset
   200
lemma (in M_axioms) Memrel_closed [intro,simp]: 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   201
     "M(A) ==> M(Memrel(A))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   202
apply (simp add: M_Memrel_iff) 
13245
714f7a423a15 development and tweaks
paulson
parents: 13223
diff changeset
   203
apply (insert Memrel_separation, simp)
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   204
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   205
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   206
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   207
subsection {* Main results of Kunen, Chapter 1 section 6 *}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   208
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   209
text{*Subset properties-- proved outside the locale*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   210
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   211
lemma linear_rel_subset: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   212
    "[| linear_rel(M,A,r);  B<=A |] ==> linear_rel(M,B,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   213
by (unfold linear_rel_def, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   214
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   215
lemma transitive_rel_subset: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   216
    "[| transitive_rel(M,A,r);  B<=A |] ==> transitive_rel(M,B,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   217
by (unfold transitive_rel_def, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   218
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   219
lemma wellfounded_on_subset: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   220
    "[| wellfounded_on(M,A,r);  B<=A |] ==> wellfounded_on(M,B,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   221
by (unfold wellfounded_on_def subset_def, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   222
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   223
lemma wellordered_subset: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   224
    "[| wellordered(M,A,r);  B<=A |] ==> wellordered(M,B,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   225
apply (unfold wellordered_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   226
apply (blast intro: linear_rel_subset transitive_rel_subset 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   227
		    wellfounded_on_subset)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   228
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   229
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   230
text{*Inductive argument for Kunen's Lemma 6.1, etc.
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   231
      Simple proof from Halmos, page 72*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   232
lemma  (in M_axioms) wellordered_iso_subset_lemma: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   233
     "[| wellordered(M,A,r);  f \<in> ord_iso(A,r, A',r);  A'<= A;  y \<in> A;  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   234
       M(A);  M(f);  M(r) |] ==> ~ <f`y, y> \<in> r"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   235
apply (unfold wellordered_def ord_iso_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   236
apply (elim conjE CollectE) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   237
apply (erule wellfounded_on_induct, assumption+)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   238
 apply (insert well_ord_iso_separation [of A f r])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   239
 apply (simp add: typed_apply_abs [OF bij_is_fun] apply_closed, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   240
apply (drule_tac a = x in bij_is_fun [THEN apply_type], assumption, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   241
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   242
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   243
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   244
text{*Kunen's Lemma 6.1: there's no order-isomorphism to an initial segment
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   245
      of a well-ordering*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   246
lemma (in M_axioms) wellordered_iso_predD:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   247
     "[| wellordered(M,A,r);  f \<in> ord_iso(A, r, Order.pred(A,x,r), r);  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   248
       M(A);  M(f);  M(r) |] ==> x \<notin> A"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   249
apply (rule notI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   250
apply (frule wellordered_iso_subset_lemma, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   251
apply (auto elim: predE)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   252
(*Now we know  ~ (f`x < x) *)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   253
apply (drule ord_iso_is_bij [THEN bij_is_fun, THEN apply_type], assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   254
(*Now we also know f`x  \<in> pred(A,x,r);  contradiction! *)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   255
apply (simp add: Order.pred_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   256
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   257
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   258
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   259
lemma (in M_axioms) wellordered_iso_pred_eq_lemma:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   260
     "[| f \<in> \<langle>Order.pred(A,y,r), r\<rangle> \<cong> \<langle>Order.pred(A,x,r), r\<rangle>;
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   261
       wellordered(M,A,r); x\<in>A; y\<in>A; M(A); M(f); M(r) |] ==> <x,y> \<notin> r"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   262
apply (frule wellordered_is_trans_on, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   263
apply (rule notI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   264
apply (drule_tac x2=y and x=x and r2=r in 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   265
         wellordered_subset [OF _ pred_subset, THEN wellordered_iso_predD]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   266
apply (simp add: trans_pred_pred_eq) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   267
apply (blast intro: predI dest: transM)+
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   268
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   269
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   270
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   271
text{*Simple consequence of Lemma 6.1*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   272
lemma (in M_axioms) wellordered_iso_pred_eq:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   273
     "[| wellordered(M,A,r);
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   274
       f \<in> ord_iso(Order.pred(A,a,r), r, Order.pred(A,c,r), r);   
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   275
       M(A);  M(f);  M(r);  a\<in>A;  c\<in>A |] ==> a=c"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   276
apply (frule wellordered_is_trans_on, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   277
apply (frule wellordered_is_linear, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   278
apply (erule_tac x=a and y=c in linearE, auto) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   279
apply (drule ord_iso_sym)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   280
(*two symmetric cases*)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   281
apply (blast dest: wellordered_iso_pred_eq_lemma)+ 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   282
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   283
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   284
lemma (in M_axioms) wellfounded_on_asym:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   285
     "[| wellfounded_on(M,A,r);  <a,x>\<in>r;  a\<in>A; x\<in>A;  M(A) |] ==> <x,a>\<notin>r"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   286
apply (simp add: wellfounded_on_def) 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   287
apply (drule_tac x="{x,a}" in rspec) 
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   288
apply (blast dest: transM)+
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   289
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   290
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   291
lemma (in M_axioms) wellordered_asym:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   292
     "[| wellordered(M,A,r);  <a,x>\<in>r;  a\<in>A; x\<in>A;  M(A) |] ==> <x,a>\<notin>r"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   293
by (simp add: wellordered_def, blast dest: wellfounded_on_asym)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   294
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   295
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   296
text{*Surely a shorter proof using lemmas in @{text Order}?
13295
ca2e9b273472 document setup;
wenzelm
parents: 13293
diff changeset
   297
     Like @{text well_ord_iso_preserving}?*}
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   298
lemma (in M_axioms) ord_iso_pred_imp_lt:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   299
     "[| f \<in> ord_iso(Order.pred(A,x,r), r, i, Memrel(i));
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   300
       g \<in> ord_iso(Order.pred(A,y,r), r, j, Memrel(j));
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   301
       wellordered(M,A,r);  x \<in> A;  y \<in> A; M(A); M(r); M(f); M(g); M(j);
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   302
       Ord(i); Ord(j); \<langle>x,y\<rangle> \<in> r |]
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   303
      ==> i < j"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   304
apply (frule wellordered_is_trans_on, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   305
apply (frule_tac y=y in transM, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   306
apply (rule_tac i=i and j=j in Ord_linear_lt, auto)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   307
txt{*case @{term "i=j"} yields a contradiction*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   308
 apply (rule_tac x1=x and A1="Order.pred(A,y,r)" in 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   309
          wellordered_iso_predD [THEN notE]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   310
   apply (blast intro: wellordered_subset [OF _ pred_subset]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   311
  apply (simp add: trans_pred_pred_eq)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   312
  apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   313
 apply (simp_all add: pred_iff pred_closed converse_closed comp_closed)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   314
txt{*case @{term "j<i"} also yields a contradiction*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   315
apply (frule restrict_ord_iso2, assumption+) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   316
apply (frule ord_iso_sym [THEN ord_iso_is_bij, THEN bij_is_fun]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   317
apply (frule apply_type, blast intro: ltD) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   318
  --{*thus @{term "converse(f)`j \<in> Order.pred(A,x,r)"}*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   319
apply (simp add: pred_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   320
apply (subgoal_tac
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   321
       "\<exists>h[M]. h \<in> ord_iso(Order.pred(A,y,r), r, 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   322
                               Order.pred(A, converse(f)`j, r), r)")
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   323
 apply (clarify, frule wellordered_iso_pred_eq, assumption+)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   324
 apply (blast dest: wellordered_asym)  
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   325
apply (intro rexI)
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   326
 apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans)+
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   327
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   328
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   329
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   330
lemma ord_iso_converse1:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   331
     "[| f: ord_iso(A,r,B,s);  <b, f`a>: s;  a:A;  b:B |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   332
      ==> <converse(f) ` b, a> : r"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   333
apply (frule ord_iso_converse, assumption+) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   334
apply (blast intro: ord_iso_is_bij [THEN bij_is_fun, THEN apply_funtype]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   335
apply (simp add: left_inverse_bij [OF ord_iso_is_bij])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   336
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   337
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   338
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   339
subsection {* Order Types: A Direct Construction by Replacement*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   340
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   341
text{*This follows Kunen's Theorem I 7.6, page 17.*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   342
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   343
constdefs
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   344
  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   345
  obase :: "[i=>o,i,i,i] => o"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   346
       --{*the domain of @{text om}, eventually shown to equal @{text A}*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   347
   "obase(M,A,r,z) == 
13293
paulson
parents: 13269
diff changeset
   348
	\<forall>a[M]. 
paulson
parents: 13269
diff changeset
   349
         a \<in> z <-> 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   350
          (a\<in>A & (\<exists>x g mx par. M(x) & M(g) & M(mx) & M(par) & ordinal(M,x) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   351
                               membership(M,x,mx) & pred_set(M,A,a,r,par) &  
13293
paulson
parents: 13269
diff changeset
   352
                               order_isomorphism(M,par,r,x,mx,g)))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   353
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   354
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   355
  omap :: "[i=>o,i,i,i] => o"  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   356
    --{*the function that maps wosets to order types*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   357
   "omap(M,A,r,f) == 
13293
paulson
parents: 13269
diff changeset
   358
	\<forall>z[M].
paulson
parents: 13269
diff changeset
   359
         z \<in> f <-> 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   360
          (\<exists>a[M]. a\<in>A & 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   361
           (\<exists>x g mx par. M(x) & M(g) & M(mx) & M(par) & ordinal(M,x) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   362
                         pair(M,a,x,z) & membership(M,x,mx) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   363
                         pred_set(M,A,a,r,par) &  
13293
paulson
parents: 13269
diff changeset
   364
                         order_isomorphism(M,par,r,x,mx,g)))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   365
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   366
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   367
  otype :: "[i=>o,i,i,i] => o"  --{*the order types themselves*}
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   368
   "otype(M,A,r,i) == \<exists>f[M]. omap(M,A,r,f) & is_range(M,f,i)"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   369
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   370
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   371
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   372
lemma (in M_axioms) obase_iff:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   373
     "[| M(A); M(r); M(z) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   374
      ==> obase(M,A,r,z) <-> 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   375
          z = {a\<in>A. \<exists>x g. M(x) & M(g) & Ord(x) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   376
                          g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x))}"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   377
apply (simp add: obase_def Memrel_closed pred_closed)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   378
apply (rule iffI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   379
 prefer 2 apply blast 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   380
apply (rule equalityI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   381
 apply (clarify, frule transM, assumption, rotate_tac -1, simp) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   382
apply (clarify, frule transM, assumption, force)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   383
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   384
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   385
text{*Can also be proved with the premise @{term "M(z)"} instead of
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   386
      @{term "M(f)"}, but that version is less useful.*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   387
lemma (in M_axioms) omap_iff:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   388
     "[| omap(M,A,r,f); M(A); M(r); M(f) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   389
      ==> z \<in> f <->
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   390
      (\<exists>a\<in>A. \<exists>x g. M(x) & M(g) & z = <a,x> & Ord(x) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   391
                   g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x)))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   392
apply (rotate_tac 1) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   393
apply (simp add: omap_def Memrel_closed pred_closed) 
13293
paulson
parents: 13269
diff changeset
   394
apply (rule iffI)
paulson
parents: 13269
diff changeset
   395
 apply (drule_tac [2] x=z in rspec)
paulson
parents: 13269
diff changeset
   396
 apply (drule_tac x=z in rspec)
paulson
parents: 13269
diff changeset
   397
 apply (blast dest: transM)+
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   398
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   399
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   400
lemma (in M_axioms) omap_unique:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   401
     "[| omap(M,A,r,f); omap(M,A,r,f'); M(A); M(r); M(f); M(f') |] ==> f' = f" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   402
apply (rule equality_iffI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   403
apply (simp add: omap_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   404
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   405
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   406
lemma (in M_axioms) omap_yields_Ord:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   407
     "[| omap(M,A,r,f); \<langle>a,x\<rangle> \<in> f; M(a); M(x) |]  ==> Ord(x)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   408
apply (simp add: omap_def, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   409
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   410
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   411
lemma (in M_axioms) otype_iff:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   412
     "[| otype(M,A,r,i); M(A); M(r); M(i) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   413
      ==> x \<in> i <-> 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   414
          (\<exists>a\<in>A. \<exists>g. M(x) & M(g) & Ord(x) & 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   415
                     g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x)))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   416
apply (simp add: otype_def, auto)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   417
  apply (blast dest: transM)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   418
 apply (blast dest!: omap_iff intro: transM)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   419
apply (rename_tac a g) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   420
apply (rule_tac a=a in rangeI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   421
apply (frule transM, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   422
apply (simp add: omap_iff, blast)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   423
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   424
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   425
lemma (in M_axioms) otype_eq_range:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   426
     "[| omap(M,A,r,f); otype(M,A,r,i); M(A); M(r); M(f); M(i) |] ==> i = range(f)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   427
apply (auto simp add: otype_def omap_iff)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   428
apply (blast dest: omap_unique) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   429
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   430
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   431
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   432
lemma (in M_axioms) Ord_otype:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   433
     "[| otype(M,A,r,i); trans[A](r); M(A); M(r); M(i) |] ==> Ord(i)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   434
apply (rotate_tac 1) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   435
apply (rule OrdI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   436
prefer 2 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   437
    apply (simp add: Ord_def otype_def omap_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   438
    apply clarify 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   439
    apply (frule pair_components_in_M, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   440
    apply blast 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   441
apply (auto simp add: Transset_def otype_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   442
 apply (blast intro: transM)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   443
apply (rename_tac y a g)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   444
apply (frule ord_iso_sym [THEN ord_iso_is_bij, THEN bij_is_fun, 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   445
			  THEN apply_funtype],  assumption)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   446
apply (rule_tac x="converse(g)`y" in bexI)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   447
 apply (frule_tac a="converse(g) ` y" in ord_iso_restrict_pred, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   448
apply (safe elim!: predE) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   449
apply (intro conjI exI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   450
prefer 3
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   451
  apply (blast intro: restrict_ord_iso ord_iso_sym ltI)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   452
 apply (blast intro: transM)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   453
 apply (blast intro: Ord_in_Ord)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   454
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   455
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   456
lemma (in M_axioms) domain_omap:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   457
     "[| omap(M,A,r,f);  obase(M,A,r,B); M(A); M(r); M(B); M(f) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   458
      ==> domain(f) = B"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   459
apply (rotate_tac 2) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   460
apply (simp add: domain_closed obase_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   461
apply (rule equality_iffI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   462
apply (simp add: domain_iff omap_iff, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   463
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   464
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   465
lemma (in M_axioms) omap_subset: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   466
     "[| omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   467
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<subseteq> B * i"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   468
apply (rotate_tac 3, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   469
apply (simp add: omap_iff obase_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   470
apply (force simp add: otype_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   471
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   472
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   473
lemma (in M_axioms) omap_funtype: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   474
     "[| omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   475
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<in> B -> i"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   476
apply (rotate_tac 3) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   477
apply (simp add: domain_omap omap_subset Pi_iff function_def omap_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   478
apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   479
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   480
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   481
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   482
lemma (in M_axioms) wellordered_omap_bij:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   483
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   484
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<in> bij(B,i)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   485
apply (insert omap_funtype [of A r f B i]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   486
apply (auto simp add: bij_def inj_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   487
prefer 2  apply (blast intro: fun_is_surj dest: otype_eq_range) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   488
apply (frule_tac a="w" in apply_Pair, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   489
apply (frule_tac a="x" in apply_Pair, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   490
apply (simp add: omap_iff) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   491
apply (blast intro: wellordered_iso_pred_eq ord_iso_sym ord_iso_trans) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   492
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   493
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   494
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   495
text{*This is not the final result: we must show @{term "oB(A,r) = A"}*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   496
lemma (in M_axioms) omap_ord_iso:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   497
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   498
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<in> ord_iso(B,r,i,Memrel(i))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   499
apply (rule ord_isoI)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   500
 apply (erule wellordered_omap_bij, assumption+) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   501
apply (insert omap_funtype [of A r f B i], simp) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   502
apply (frule_tac a="x" in apply_Pair, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   503
apply (frule_tac a="y" in apply_Pair, assumption) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   504
apply (auto simp add: omap_iff)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   505
 txt{*direction 1: assuming @{term "\<langle>x,y\<rangle> \<in> r"}*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   506
 apply (blast intro: ltD ord_iso_pred_imp_lt)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   507
 txt{*direction 2: proving @{term "\<langle>x,y\<rangle> \<in> r"} using linearity of @{term r}*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   508
apply (rename_tac x y g ga) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   509
apply (frule wellordered_is_linear, assumption, 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   510
       erule_tac x=x and y=y in linearE, assumption+) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   511
txt{*the case @{term "x=y"} leads to immediate contradiction*} 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   512
apply (blast elim: mem_irrefl) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   513
txt{*the case @{term "\<langle>y,x\<rangle> \<in> r"}: handle like the opposite direction*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   514
apply (blast dest: ord_iso_pred_imp_lt ltD elim: mem_asym) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   515
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   516
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   517
lemma (in M_axioms) Ord_omap_image_pred:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   518
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   519
       M(A); M(r); M(f); M(B); M(i); b \<in> A |] ==> Ord(f `` Order.pred(A,b,r))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   520
apply (frule wellordered_is_trans_on, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   521
apply (rule OrdI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   522
	prefer 2 apply (simp add: image_iff omap_iff Ord_def, blast) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   523
txt{*Hard part is to show that the image is a transitive set.*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   524
apply (rotate_tac 3)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   525
apply (simp add: Transset_def, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   526
apply (simp add: image_iff pred_iff apply_iff [OF omap_funtype [of A r f B i]])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   527
apply (rename_tac c j, clarify)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   528
apply (frule omap_funtype [of A r f B, THEN apply_funtype], assumption+)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   529
apply (subgoal_tac "j : i") 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   530
	prefer 2 apply (blast intro: Ord_trans Ord_otype)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   531
apply (subgoal_tac "converse(f) ` j : B") 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   532
	prefer 2 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   533
	apply (blast dest: wellordered_omap_bij [THEN bij_converse_bij, 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   534
                                      THEN bij_is_fun, THEN apply_funtype])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   535
apply (rule_tac x="converse(f) ` j" in bexI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   536
 apply (simp add: right_inverse_bij [OF wellordered_omap_bij]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   537
apply (intro predI conjI)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   538
 apply (erule_tac b=c in trans_onD) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   539
 apply (rule ord_iso_converse1 [OF omap_ord_iso [of A r f B i]])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   540
apply (auto simp add: obase_iff)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   541
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   542
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   543
lemma (in M_axioms) restrict_omap_ord_iso:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   544
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i); 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   545
       D \<subseteq> B; M(A); M(r); M(f); M(B); M(i) |] 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   546
      ==> restrict(f,D) \<in> (\<langle>D,r\<rangle> \<cong> \<langle>f``D, Memrel(f``D)\<rangle>)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   547
apply (frule ord_iso_restrict_image [OF omap_ord_iso [of A r f B i]], 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   548
       assumption+)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   549
apply (drule ord_iso_sym [THEN subset_ord_iso_Memrel]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   550
apply (blast dest: subsetD [OF omap_subset]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   551
apply (drule ord_iso_sym, simp) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   552
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   553
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   554
lemma (in M_axioms) obase_equals: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   555
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i);
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   556
       M(A); M(r); M(f); M(B); M(i) |] ==> B = A"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   557
apply (rotate_tac 4)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   558
apply (rule equalityI, force simp add: obase_iff, clarify) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   559
apply (subst obase_iff [of A r B, THEN iffD1], assumption+, simp) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   560
apply (frule wellordered_is_wellfounded_on, assumption)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   561
apply (erule wellfounded_on_induct, assumption+)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   562
 apply (insert obase_equals_separation)
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   563
 apply (simp add: rex_def, clarify) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   564
apply (rename_tac b) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   565
apply (subgoal_tac "Order.pred(A,b,r) <= B") 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   566
 prefer 2 apply (force simp add: pred_iff obase_iff)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   567
apply (intro conjI exI) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   568
    prefer 4 apply (blast intro: restrict_omap_ord_iso) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   569
apply (blast intro: Ord_omap_image_pred)+
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   570
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   571
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   572
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   573
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   574
text{*Main result: @{term om} gives the order-isomorphism 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   575
      @{term "\<langle>A,r\<rangle> \<cong> \<langle>i, Memrel(i)\<rangle>"} *}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   576
theorem (in M_axioms) omap_ord_iso_otype:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   577
     "[| wellordered(M,A,r); omap(M,A,r,f); obase(M,A,r,B); otype(M,A,r,i);
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   578
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<in> ord_iso(A, r, i, Memrel(i))"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   579
apply (frule omap_ord_iso, assumption+) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   580
apply (frule obase_equals, assumption+, blast) 
13293
paulson
parents: 13269
diff changeset
   581
done 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   582
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   583
lemma (in M_axioms) obase_exists:
13293
paulson
parents: 13269
diff changeset
   584
     "[| M(A); M(r) |] ==> \<exists>z[M]. obase(M,A,r,z)"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   585
apply (simp add: obase_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   586
apply (insert obase_separation [of A r])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   587
apply (simp add: separation_def)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   588
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   589
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   590
lemma (in M_axioms) omap_exists:
13293
paulson
parents: 13269
diff changeset
   591
     "[| M(A); M(r) |] ==> \<exists>z[M]. omap(M,A,r,z)"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   592
apply (insert obase_exists [of A r]) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   593
apply (simp add: omap_def) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   594
apply (insert omap_replacement [of A r])
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   595
apply (simp add: strong_replacement_def, clarify) 
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   596
apply (drule_tac x=x in rspec, clarify) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   597
apply (simp add: Memrel_closed pred_closed obase_iff)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   598
apply (erule impE) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   599
 apply (clarsimp simp add: univalent_def)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   600
 apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans, clarify)  
13293
paulson
parents: 13269
diff changeset
   601
apply (rule_tac x=Y in rexI) 
paulson
parents: 13269
diff changeset
   602
apply (simp add: Memrel_closed pred_closed obase_iff, blast, assumption)
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   603
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   604
13293
paulson
parents: 13269
diff changeset
   605
declare rall_simps [simp] rex_simps [simp]
paulson
parents: 13269
diff changeset
   606
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   607
lemma (in M_axioms) otype_exists:
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   608
     "[| wellordered(M,A,r); M(A); M(r) |] ==> \<exists>i[M]. otype(M,A,r,i)"
13293
paulson
parents: 13269
diff changeset
   609
apply (insert omap_exists [of A r])  
paulson
parents: 13269
diff changeset
   610
apply (simp add: otype_def, safe)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   611
apply (rule_tac x="range(x)" in rexI) 
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   612
apply blast+
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   613
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   614
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   615
theorem (in M_axioms) omap_ord_iso_otype:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   616
     "[| wellordered(M,A,r); M(A); M(r) |]
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   617
      ==> \<exists>f[M]. (\<exists>i[M]. Ord(i) & f \<in> ord_iso(A, r, i, Memrel(i)))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   618
apply (insert obase_exists [of A r] omap_exists [of A r] otype_exists [of A r], simp, clarify)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   619
apply (rename_tac i) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   620
apply (subgoal_tac "Ord(i)", blast intro: omap_ord_iso_otype) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   621
apply (rule Ord_otype) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   622
    apply (force simp add: otype_def range_closed) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   623
   apply (simp_all add: wellordered_is_trans_on) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   624
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   625
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   626
lemma (in M_axioms) ordertype_exists:
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   627
     "[| wellordered(M,A,r); M(A); M(r) |]
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   628
      ==> \<exists>f[M]. (\<exists>i[M]. Ord(i) & f \<in> ord_iso(A, r, i, Memrel(i)))"
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   629
apply (insert obase_exists [of A r] omap_exists [of A r] otype_exists [of A r], simp, clarify)
13299
3a932abf97e8 More use of relativized quantifiers
paulson
parents: 13298
diff changeset
   630
apply (rename_tac i) 
13223
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   631
apply (subgoal_tac "Ord(i)", blast intro: omap_ord_iso_otype) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   632
apply (rule Ord_otype) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   633
    apply (force simp add: otype_def range_closed) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   634
   apply (simp_all add: wellordered_is_trans_on) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   635
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   636
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   637
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   638
lemma (in M_axioms) relativized_imp_well_ord: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   639
     "[| wellordered(M,A,r); M(A); M(r) |] ==> well_ord(A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   640
apply (insert ordertype_exists [of A r], simp)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   641
apply (blast intro: well_ord_ord_iso well_ord_Memrel )  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   642
done
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   643
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   644
subsection {*Kunen's theorem 5.4, poage 127*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   645
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   646
text{*(a) The notion of Wellordering is absolute*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   647
theorem (in M_axioms) well_ord_abs [simp]: 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   648
     "[| M(A); M(r) |] ==> wellordered(M,A,r) <-> well_ord(A,r)" 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   649
by (blast intro: well_ord_imp_relativized relativized_imp_well_ord)  
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   650
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   651
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   652
text{*(b) Order types are absolute*}
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   653
lemma (in M_axioms) 
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   654
     "[| wellordered(M,A,r); f \<in> ord_iso(A, r, i, Memrel(i));
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   655
       M(A); M(r); M(f); M(i); Ord(i) |] ==> i = ordertype(A,r)"
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   656
by (blast intro: Ord_ordertype relativized_imp_well_ord ordertype_ord_iso
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   657
                 Ord_iso_implies_eq ord_iso_sym ord_iso_trans)
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   658
45be08fbdcff new theory of inner models
paulson
parents:
diff changeset
   659
end