src/ZF/Constructible/Rank.thy
author paulson
Mon, 14 Oct 2002 11:32:00 +0200
changeset 13647 7f6f0ffc45c3
parent 13634 99a593b49b04
child 13721 2cf506c09946
permissions -rw-r--r--
tidying and reorganization
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     1
(*  Title:      ZF/Constructible/Rank.thy
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     2
    ID:   $Id$
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     4
*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     5
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     6
header {*Absoluteness for Order Types, Rank Functions and Well-Founded 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     7
         Relations*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     8
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     9
theory Rank = WF_absolute:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    10
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    11
subsection {*Order Types: A Direct Construction by Replacement*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    12
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    13
locale M_ordertype = M_basic +
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    14
assumes well_ord_iso_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    15
     "[| M(A); M(f); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    16
      ==> separation (M, \<lambda>x. x\<in>A --> (\<exists>y[M]. (\<exists>p[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    17
		     fun_apply(M,f,x,y) & pair(M,y,x,p) & p \<in> r)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    18
  and obase_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    19
     --{*part of the order type formalization*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    20
     "[| M(A); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    21
      ==> separation(M, \<lambda>a. \<exists>x[M]. \<exists>g[M]. \<exists>mx[M]. \<exists>par[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    22
	     ordinal(M,x) & membership(M,x,mx) & pred_set(M,A,a,r,par) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    23
	     order_isomorphism(M,par,r,x,mx,g))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    24
  and obase_equals_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    25
     "[| M(A); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    26
      ==> separation (M, \<lambda>x. x\<in>A --> ~(\<exists>y[M]. \<exists>g[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    27
			      ordinal(M,y) & (\<exists>my[M]. \<exists>pxr[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    28
			      membership(M,y,my) & pred_set(M,A,x,r,pxr) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    29
			      order_isomorphism(M,pxr,r,y,my,g))))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    30
  and omap_replacement:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    31
     "[| M(A); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    32
      ==> strong_replacement(M,
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    33
             \<lambda>a z. \<exists>x[M]. \<exists>g[M]. \<exists>mx[M]. \<exists>par[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    34
	     ordinal(M,x) & pair(M,a,x,z) & membership(M,x,mx) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    35
	     pred_set(M,A,a,r,par) & order_isomorphism(M,par,r,x,mx,g))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    36
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    37
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    38
text{*Inductive argument for Kunen's Lemma I 6.1, etc.
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    39
      Simple proof from Halmos, page 72*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    40
lemma  (in M_ordertype) wellordered_iso_subset_lemma: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    41
     "[| wellordered(M,A,r);  f \<in> ord_iso(A,r, A',r);  A'<= A;  y \<in> A;  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    42
       M(A);  M(f);  M(r) |] ==> ~ <f`y, y> \<in> r"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    43
apply (unfold wellordered_def ord_iso_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    44
apply (elim conjE CollectE) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    45
apply (erule wellfounded_on_induct, assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    46
 apply (insert well_ord_iso_separation [of A f r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    47
 apply (simp, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    48
apply (drule_tac a = x in bij_is_fun [THEN apply_type], assumption, blast)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    49
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    50
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    51
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    52
text{*Kunen's Lemma I 6.1, page 14: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    53
      there's no order-isomorphism to an initial segment of a well-ordering*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    54
lemma (in M_ordertype) wellordered_iso_predD:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    55
     "[| wellordered(M,A,r);  f \<in> ord_iso(A, r, Order.pred(A,x,r), r);  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    56
       M(A);  M(f);  M(r) |] ==> x \<notin> A"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    57
apply (rule notI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    58
apply (frule wellordered_iso_subset_lemma, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    59
apply (auto elim: predE)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    60
(*Now we know  ~ (f`x < x) *)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    61
apply (drule ord_iso_is_bij [THEN bij_is_fun, THEN apply_type], assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    62
(*Now we also know f`x  \<in> pred(A,x,r);  contradiction! *)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    63
apply (simp add: Order.pred_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    64
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    65
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    66
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    67
lemma (in M_ordertype) wellordered_iso_pred_eq_lemma:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    68
     "[| f \<in> \<langle>Order.pred(A,y,r), r\<rangle> \<cong> \<langle>Order.pred(A,x,r), r\<rangle>;
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    69
       wellordered(M,A,r); x\<in>A; y\<in>A; M(A); M(f); M(r) |] ==> <x,y> \<notin> r"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    70
apply (frule wellordered_is_trans_on, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    71
apply (rule notI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    72
apply (drule_tac x2=y and x=x and r2=r in 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    73
         wellordered_subset [OF _ pred_subset, THEN wellordered_iso_predD]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    74
apply (simp add: trans_pred_pred_eq) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    75
apply (blast intro: predI dest: transM)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    76
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    77
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    78
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    79
text{*Simple consequence of Lemma 6.1*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    80
lemma (in M_ordertype) wellordered_iso_pred_eq:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    81
     "[| wellordered(M,A,r);
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    82
       f \<in> ord_iso(Order.pred(A,a,r), r, Order.pred(A,c,r), r);   
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    83
       M(A);  M(f);  M(r);  a\<in>A;  c\<in>A |] ==> a=c"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    84
apply (frule wellordered_is_trans_on, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    85
apply (frule wellordered_is_linear, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    86
apply (erule_tac x=a and y=c in linearE, auto) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    87
apply (drule ord_iso_sym)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    88
(*two symmetric cases*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    89
apply (blast dest: wellordered_iso_pred_eq_lemma)+ 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    90
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    91
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    92
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    93
text{*Following Kunen's Theorem I 7.6, page 17.  Note that this material is
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    94
not required elsewhere.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    95
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    96
text{*Can't use @{text well_ord_iso_preserving} because it needs the
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    97
strong premise @{term "well_ord(A,r)"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    98
lemma (in M_ordertype) ord_iso_pred_imp_lt:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    99
     "[| f \<in> ord_iso(Order.pred(A,x,r), r, i, Memrel(i));
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   100
         g \<in> ord_iso(Order.pred(A,y,r), r, j, Memrel(j));
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   101
         wellordered(M,A,r);  x \<in> A;  y \<in> A; M(A); M(r); M(f); M(g); M(j);
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   102
         Ord(i); Ord(j); \<langle>x,y\<rangle> \<in> r |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   103
      ==> i < j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   104
apply (frule wellordered_is_trans_on, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   105
apply (frule_tac y=y in transM, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   106
apply (rule_tac i=i and j=j in Ord_linear_lt, auto)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   107
txt{*case @{term "i=j"} yields a contradiction*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   108
 apply (rule_tac x1=x and A1="Order.pred(A,y,r)" in 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   109
          wellordered_iso_predD [THEN notE]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   110
   apply (blast intro: wellordered_subset [OF _ pred_subset]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   111
  apply (simp add: trans_pred_pred_eq)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   112
  apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   113
 apply (simp_all add: pred_iff pred_closed converse_closed comp_closed)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   114
txt{*case @{term "j<i"} also yields a contradiction*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   115
apply (frule restrict_ord_iso2, assumption+) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   116
apply (frule ord_iso_sym [THEN ord_iso_is_bij, THEN bij_is_fun]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   117
apply (frule apply_type, blast intro: ltD) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   118
  --{*thus @{term "converse(f)`j \<in> Order.pred(A,x,r)"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   119
apply (simp add: pred_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   120
apply (subgoal_tac
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   121
       "\<exists>h[M]. h \<in> ord_iso(Order.pred(A,y,r), r, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   122
                               Order.pred(A, converse(f)`j, r), r)")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   123
 apply (clarify, frule wellordered_iso_pred_eq, assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   124
 apply (blast dest: wellordered_asym)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   125
apply (intro rexI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   126
 apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   127
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   128
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   129
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   130
lemma ord_iso_converse1:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   131
     "[| f: ord_iso(A,r,B,s);  <b, f`a>: s;  a:A;  b:B |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   132
      ==> <converse(f) ` b, a> : r"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   133
apply (frule ord_iso_converse, assumption+) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   134
apply (blast intro: ord_iso_is_bij [THEN bij_is_fun, THEN apply_funtype]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   135
apply (simp add: left_inverse_bij [OF ord_iso_is_bij])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   136
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   137
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   138
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   139
constdefs
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   140
  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   141
  obase :: "[i=>o,i,i] => i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   142
       --{*the domain of @{text om}, eventually shown to equal @{text A}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   143
   "obase(M,A,r) == {a\<in>A. \<exists>x[M]. \<exists>g[M]. Ord(x) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   144
                          g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x))}"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   145
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   146
  omap :: "[i=>o,i,i,i] => o"  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   147
    --{*the function that maps wosets to order types*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   148
   "omap(M,A,r,f) == 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   149
	\<forall>z[M].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   150
         z \<in> f <-> (\<exists>a\<in>A. \<exists>x[M]. \<exists>g[M]. z = <a,x> & Ord(x) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   151
                        g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   152
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   153
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   154
  otype :: "[i=>o,i,i,i] => o"  --{*the order types themselves*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   155
   "otype(M,A,r,i) == \<exists>f[M]. omap(M,A,r,f) & is_range(M,f,i)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   156
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   157
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   158
text{*Can also be proved with the premise @{term "M(z)"} instead of
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   159
      @{term "M(f)"}, but that version is less useful.  This lemma
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   160
      is also more useful than the definition, @{text omap_def}.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   161
lemma (in M_ordertype) omap_iff:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   162
     "[| omap(M,A,r,f); M(A); M(f) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   163
      ==> z \<in> f <->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   164
          (\<exists>a\<in>A. \<exists>x[M]. \<exists>g[M]. z = <a,x> & Ord(x) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   165
                                g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   166
apply (simp add: omap_def Memrel_closed pred_closed) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   167
apply (rule iffI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   168
 apply (drule_tac [2] x=z in rspec)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   169
 apply (drule_tac x=z in rspec)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   170
 apply (blast dest: transM)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   171
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   172
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   173
lemma (in M_ordertype) omap_unique:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   174
     "[| omap(M,A,r,f); omap(M,A,r,f'); M(A); M(r); M(f); M(f') |] ==> f' = f" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   175
apply (rule equality_iffI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   176
apply (simp add: omap_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   177
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   178
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   179
lemma (in M_ordertype) omap_yields_Ord:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   180
     "[| omap(M,A,r,f); \<langle>a,x\<rangle> \<in> f; M(a); M(x) |]  ==> Ord(x)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   181
  by (simp add: omap_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   182
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   183
lemma (in M_ordertype) otype_iff:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   184
     "[| otype(M,A,r,i); M(A); M(r); M(i) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   185
      ==> x \<in> i <-> 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   186
          (M(x) & Ord(x) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   187
           (\<exists>a\<in>A. \<exists>g[M]. g \<in> ord_iso(Order.pred(A,a,r),r,x,Memrel(x))))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   188
apply (auto simp add: omap_iff otype_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   189
 apply (blast intro: transM) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   190
apply (rule rangeI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   191
apply (frule transM, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   192
apply (simp add: omap_iff, blast)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   193
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   194
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   195
lemma (in M_ordertype) otype_eq_range:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   196
     "[| omap(M,A,r,f); otype(M,A,r,i); M(A); M(r); M(f); M(i) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   197
      ==> i = range(f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   198
apply (auto simp add: otype_def omap_iff)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   199
apply (blast dest: omap_unique) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   200
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   201
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   202
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   203
lemma (in M_ordertype) Ord_otype:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   204
     "[| otype(M,A,r,i); trans[A](r); M(A); M(r); M(i) |] ==> Ord(i)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   205
apply (rule OrdI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   206
prefer 2 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   207
    apply (simp add: Ord_def otype_def omap_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   208
    apply clarify 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   209
    apply (frule pair_components_in_M, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   210
    apply blast 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   211
apply (auto simp add: Transset_def otype_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   212
  apply (blast intro: transM)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   213
 apply (blast intro: Ord_in_Ord) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   214
apply (rename_tac y a g)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   215
apply (frule ord_iso_sym [THEN ord_iso_is_bij, THEN bij_is_fun, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   216
			  THEN apply_funtype],  assumption)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   217
apply (rule_tac x="converse(g)`y" in bexI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   218
 apply (frule_tac a="converse(g) ` y" in ord_iso_restrict_pred, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   219
apply (safe elim!: predE) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   220
apply (blast intro: restrict_ord_iso ord_iso_sym ltI dest: transM)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   221
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   222
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   223
lemma (in M_ordertype) domain_omap:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   224
     "[| omap(M,A,r,f);  M(A); M(r); M(B); M(f) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   225
      ==> domain(f) = obase(M,A,r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   226
apply (simp add: domain_closed obase_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   227
apply (rule equality_iffI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   228
apply (simp add: domain_iff omap_iff, blast) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   229
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   230
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   231
lemma (in M_ordertype) omap_subset: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   232
     "[| omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   233
       M(A); M(r); M(f); M(B); M(i) |] ==> f \<subseteq> obase(M,A,r) * i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   234
apply clarify 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   235
apply (simp add: omap_iff obase_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   236
apply (force simp add: otype_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   237
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   238
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   239
lemma (in M_ordertype) omap_funtype: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   240
     "[| omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   241
         M(A); M(r); M(f); M(i) |] ==> f \<in> obase(M,A,r) -> i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   242
apply (simp add: domain_omap omap_subset Pi_iff function_def omap_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   243
apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   244
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   245
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   246
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   247
lemma (in M_ordertype) wellordered_omap_bij:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   248
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   249
       M(A); M(r); M(f); M(i) |] ==> f \<in> bij(obase(M,A,r),i)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   250
apply (insert omap_funtype [of A r f i]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   251
apply (auto simp add: bij_def inj_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   252
prefer 2  apply (blast intro: fun_is_surj dest: otype_eq_range) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   253
apply (frule_tac a=w in apply_Pair, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   254
apply (frule_tac a=x in apply_Pair, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   255
apply (simp add: omap_iff) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   256
apply (blast intro: wellordered_iso_pred_eq ord_iso_sym ord_iso_trans) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   257
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   258
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   259
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   260
text{*This is not the final result: we must show @{term "oB(A,r) = A"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   261
lemma (in M_ordertype) omap_ord_iso:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   262
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   263
       M(A); M(r); M(f); M(i) |] ==> f \<in> ord_iso(obase(M,A,r),r,i,Memrel(i))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   264
apply (rule ord_isoI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   265
 apply (erule wellordered_omap_bij, assumption+) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   266
apply (insert omap_funtype [of A r f i], simp) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   267
apply (frule_tac a=x in apply_Pair, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   268
apply (frule_tac a=y in apply_Pair, assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   269
apply (auto simp add: omap_iff)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   270
 txt{*direction 1: assuming @{term "\<langle>x,y\<rangle> \<in> r"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   271
 apply (blast intro: ltD ord_iso_pred_imp_lt)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   272
 txt{*direction 2: proving @{term "\<langle>x,y\<rangle> \<in> r"} using linearity of @{term r}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   273
apply (rename_tac x y g ga) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   274
apply (frule wellordered_is_linear, assumption, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   275
       erule_tac x=x and y=y in linearE, assumption+) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   276
txt{*the case @{term "x=y"} leads to immediate contradiction*} 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   277
apply (blast elim: mem_irrefl) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   278
txt{*the case @{term "\<langle>y,x\<rangle> \<in> r"}: handle like the opposite direction*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   279
apply (blast dest: ord_iso_pred_imp_lt ltD elim: mem_asym) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   280
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   281
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   282
lemma (in M_ordertype) Ord_omap_image_pred:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   283
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   284
       M(A); M(r); M(f); M(i); b \<in> A |] ==> Ord(f `` Order.pred(A,b,r))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   285
apply (frule wellordered_is_trans_on, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   286
apply (rule OrdI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   287
	prefer 2 apply (simp add: image_iff omap_iff Ord_def, blast) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   288
txt{*Hard part is to show that the image is a transitive set.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   289
apply (simp add: Transset_def, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   290
apply (simp add: image_iff pred_iff apply_iff [OF omap_funtype [of A r f i]])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   291
apply (rename_tac c j, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   292
apply (frule omap_funtype [of A r f, THEN apply_funtype], assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   293
apply (subgoal_tac "j : i") 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   294
	prefer 2 apply (blast intro: Ord_trans Ord_otype)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   295
apply (subgoal_tac "converse(f) ` j : obase(M,A,r)") 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   296
	prefer 2 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   297
	apply (blast dest: wellordered_omap_bij [THEN bij_converse_bij, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   298
                                      THEN bij_is_fun, THEN apply_funtype])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   299
apply (rule_tac x="converse(f) ` j" in bexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   300
 apply (simp add: right_inverse_bij [OF wellordered_omap_bij]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   301
apply (intro predI conjI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   302
 apply (erule_tac b=c in trans_onD) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   303
 apply (rule ord_iso_converse1 [OF omap_ord_iso [of A r f i]])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   304
apply (auto simp add: obase_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   305
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   306
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   307
lemma (in M_ordertype) restrict_omap_ord_iso:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   308
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i); 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   309
       D \<subseteq> obase(M,A,r); M(A); M(r); M(f); M(i) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   310
      ==> restrict(f,D) \<in> (\<langle>D,r\<rangle> \<cong> \<langle>f``D, Memrel(f``D)\<rangle>)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   311
apply (frule ord_iso_restrict_image [OF omap_ord_iso [of A r f i]], 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   312
       assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   313
apply (drule ord_iso_sym [THEN subset_ord_iso_Memrel]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   314
apply (blast dest: subsetD [OF omap_subset]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   315
apply (drule ord_iso_sym, simp) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   316
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   317
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   318
lemma (in M_ordertype) obase_equals: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   319
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i);
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   320
       M(A); M(r); M(f); M(i) |] ==> obase(M,A,r) = A"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   321
apply (rule equalityI, force simp add: obase_def, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   322
apply (unfold obase_def, simp) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   323
apply (frule wellordered_is_wellfounded_on, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   324
apply (erule wellfounded_on_induct, assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   325
 apply (frule obase_equals_separation [of A r], assumption) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   326
 apply (simp, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   327
apply (rename_tac b) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   328
apply (subgoal_tac "Order.pred(A,b,r) <= obase(M,A,r)") 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   329
 apply (blast intro!: restrict_omap_ord_iso Ord_omap_image_pred)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   330
apply (force simp add: pred_iff obase_def)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   331
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   332
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   333
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   334
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   335
text{*Main result: @{term om} gives the order-isomorphism 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   336
      @{term "\<langle>A,r\<rangle> \<cong> \<langle>i, Memrel(i)\<rangle>"} *}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   337
theorem (in M_ordertype) omap_ord_iso_otype:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   338
     "[| wellordered(M,A,r); omap(M,A,r,f); otype(M,A,r,i);
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   339
       M(A); M(r); M(f); M(i) |] ==> f \<in> ord_iso(A, r, i, Memrel(i))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   340
apply (frule omap_ord_iso, assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   341
apply (simp add: obase_equals)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   342
done 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   343
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   344
lemma (in M_ordertype) obase_exists:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   345
     "[| M(A); M(r) |] ==> M(obase(M,A,r))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   346
apply (simp add: obase_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   347
apply (insert obase_separation [of A r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   348
apply (simp add: separation_def)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   349
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   350
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   351
lemma (in M_ordertype) omap_exists:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   352
     "[| M(A); M(r) |] ==> \<exists>z[M]. omap(M,A,r,z)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   353
apply (simp add: omap_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   354
apply (insert omap_replacement [of A r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   355
apply (simp add: strong_replacement_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   356
apply (drule_tac x="obase(M,A,r)" in rspec) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   357
 apply (simp add: obase_exists) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   358
apply (simp add: Memrel_closed pred_closed obase_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   359
apply (erule impE) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   360
 apply (clarsimp simp add: univalent_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   361
 apply (blast intro: Ord_iso_implies_eq ord_iso_sym ord_iso_trans, clarify)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   362
apply (rule_tac x=Y in rexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   363
apply (simp add: Memrel_closed pred_closed obase_def, blast, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   364
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   365
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   366
declare rall_simps [simp] rex_simps [simp]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   367
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   368
lemma (in M_ordertype) otype_exists:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   369
     "[| wellordered(M,A,r); M(A); M(r) |] ==> \<exists>i[M]. otype(M,A,r,i)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   370
apply (insert omap_exists [of A r])  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   371
apply (simp add: otype_def, safe)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   372
apply (rule_tac x="range(x)" in rexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   373
apply blast+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   374
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   375
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   376
lemma (in M_ordertype) ordertype_exists:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   377
     "[| wellordered(M,A,r); M(A); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   378
      ==> \<exists>f[M]. (\<exists>i[M]. Ord(i) & f \<in> ord_iso(A, r, i, Memrel(i)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   379
apply (insert obase_exists [of A r] omap_exists [of A r] otype_exists [of A r], simp, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   380
apply (rename_tac i) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   381
apply (subgoal_tac "Ord(i)", blast intro: omap_ord_iso_otype)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   382
apply (rule Ord_otype) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   383
    apply (force simp add: otype_def range_closed) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   384
   apply (simp_all add: wellordered_is_trans_on) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   385
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   386
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   387
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   388
lemma (in M_ordertype) relativized_imp_well_ord: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   389
     "[| wellordered(M,A,r); M(A); M(r) |] ==> well_ord(A,r)" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   390
apply (insert ordertype_exists [of A r], simp)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   391
apply (blast intro: well_ord_ord_iso well_ord_Memrel)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   392
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   393
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   394
subsection {*Kunen's theorem 5.4, page 127*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   395
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   396
text{*(a) The notion of Wellordering is absolute*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   397
theorem (in M_ordertype) well_ord_abs [simp]: 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   398
     "[| M(A); M(r) |] ==> wellordered(M,A,r) <-> well_ord(A,r)" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   399
by (blast intro: well_ord_imp_relativized relativized_imp_well_ord)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   400
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   401
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   402
text{*(b) Order types are absolute*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   403
theorem (in M_ordertype) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   404
     "[| wellordered(M,A,r); f \<in> ord_iso(A, r, i, Memrel(i));
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   405
       M(A); M(r); M(f); M(i); Ord(i) |] ==> i = ordertype(A,r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   406
by (blast intro: Ord_ordertype relativized_imp_well_ord ordertype_ord_iso
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   407
                 Ord_iso_implies_eq ord_iso_sym ord_iso_trans)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   408
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   409
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   410
subsection{*Ordinal Arithmetic: Two Examples of Recursion*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   411
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   412
text{*Note: the remainder of this theory is not needed elsewhere.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   413
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   414
subsubsection{*Ordinal Addition*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   415
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   416
(*FIXME: update to use new techniques!!*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   417
constdefs
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   418
 (*This expresses ordinal addition in the language of ZF.  It also 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   419
   provides an abbreviation that can be used in the instance of strong
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   420
   replacement below.  Here j is used to define the relation, namely
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   421
   Memrel(succ(j)), while x determines the domain of f.*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   422
 is_oadd_fun :: "[i=>o,i,i,i,i] => o"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   423
    "is_oadd_fun(M,i,j,x,f) == 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   424
       (\<forall>sj msj. M(sj) --> M(msj) --> 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   425
                 successor(M,j,sj) --> membership(M,sj,msj) --> 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   426
	         M_is_recfun(M, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   427
		     %x g y. \<exists>gx[M]. image(M,g,x,gx) & union(M,i,gx,y),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   428
		     msj, x, f))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   429
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   430
 is_oadd :: "[i=>o,i,i,i] => o"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   431
    "is_oadd(M,i,j,k) == 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   432
        (~ ordinal(M,i) & ~ ordinal(M,j) & k=0) |
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   433
        (~ ordinal(M,i) & ordinal(M,j) & k=j) |
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   434
        (ordinal(M,i) & ~ ordinal(M,j) & k=i) |
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   435
        (ordinal(M,i) & ordinal(M,j) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   436
	 (\<exists>f fj sj. M(f) & M(fj) & M(sj) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   437
		    successor(M,j,sj) & is_oadd_fun(M,i,sj,sj,f) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   438
		    fun_apply(M,f,j,fj) & fj = k))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   439
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   440
 (*NEEDS RELATIVIZATION*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   441
 omult_eqns :: "[i,i,i,i] => o"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   442
    "omult_eqns(i,x,g,z) ==
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   443
            Ord(x) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   444
	    (x=0 --> z=0) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   445
            (\<forall>j. x = succ(j) --> z = g`j ++ i) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   446
            (Limit(x) --> z = \<Union>(g``x))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   447
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   448
 is_omult_fun :: "[i=>o,i,i,i] => o"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   449
    "is_omult_fun(M,i,j,f) == 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   450
	    (\<exists>df. M(df) & is_function(M,f) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   451
                  is_domain(M,f,df) & subset(M, j, df)) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   452
            (\<forall>x\<in>j. omult_eqns(i,x,f,f`x))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   453
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   454
 is_omult :: "[i=>o,i,i,i] => o"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   455
    "is_omult(M,i,j,k) == 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   456
	\<exists>f fj sj. M(f) & M(fj) & M(sj) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   457
                  successor(M,j,sj) & is_omult_fun(M,i,sj,f) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   458
                  fun_apply(M,f,j,fj) & fj = k"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   459
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   460
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   461
locale M_ord_arith = M_ordertype +
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   462
  assumes oadd_strong_replacement:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   463
   "[| M(i); M(j) |] ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   464
    strong_replacement(M, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   465
         \<lambda>x z. \<exists>y[M]. pair(M,x,y,z) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   466
                  (\<exists>f[M]. \<exists>fx[M]. is_oadd_fun(M,i,j,x,f) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   467
		           image(M,f,x,fx) & y = i Un fx))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   468
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   469
 and omult_strong_replacement':
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   470
   "[| M(i); M(j) |] ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   471
    strong_replacement(M, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   472
         \<lambda>x z. \<exists>y[M]. z = <x,y> &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   473
	     (\<exists>g[M]. is_recfun(Memrel(succ(j)),x,%x g. THE z. omult_eqns(i,x,g,z),g) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   474
	     y = (THE z. omult_eqns(i, x, g, z))))" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   475
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   476
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   477
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   478
text{*@{text is_oadd_fun}: Relating the pure "language of set theory" to Isabelle/ZF*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   479
lemma (in M_ord_arith) is_oadd_fun_iff:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   480
   "[| a\<le>j; M(i); M(j); M(a); M(f) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   481
    ==> is_oadd_fun(M,i,j,a,f) <->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   482
	f \<in> a \<rightarrow> range(f) & (\<forall>x. M(x) --> x < a --> f`x = i Un f``x)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   483
apply (frule lt_Ord) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   484
apply (simp add: is_oadd_fun_def Memrel_closed Un_closed 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   485
             relation2_def is_recfun_abs [of "%x g. i Un g``x"]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   486
             image_closed is_recfun_iff_equation  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   487
             Ball_def lt_trans [OF ltI, of _ a] lt_Memrel)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   488
apply (simp add: lt_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   489
apply (blast dest: transM) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   490
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   491
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   492
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   493
lemma (in M_ord_arith) oadd_strong_replacement':
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   494
    "[| M(i); M(j) |] ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   495
     strong_replacement(M, 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   496
            \<lambda>x z. \<exists>y[M]. z = <x,y> &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   497
		  (\<exists>g[M]. is_recfun(Memrel(succ(j)),x,%x g. i Un g``x,g) & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   498
		  y = i Un g``x))" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   499
apply (insert oadd_strong_replacement [of i j]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   500
apply (simp add: is_oadd_fun_def relation2_def
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   501
                 is_recfun_abs [of "%x g. i Un g``x"])  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   502
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   503
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   504
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   505
lemma (in M_ord_arith) exists_oadd:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   506
    "[| Ord(j);  M(i);  M(j) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   507
     ==> \<exists>f[M]. is_recfun(Memrel(succ(j)), j, %x g. i Un g``x, f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   508
apply (rule wf_exists_is_recfun [OF wf_Memrel trans_Memrel])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   509
    apply (simp_all add: Memrel_type oadd_strong_replacement') 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   510
done 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   511
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   512
lemma (in M_ord_arith) exists_oadd_fun:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   513
    "[| Ord(j);  M(i);  M(j) |] ==> \<exists>f[M]. is_oadd_fun(M,i,succ(j),succ(j),f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   514
apply (rule exists_oadd [THEN rexE])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   515
apply (erule Ord_succ, assumption, simp) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   516
apply (rename_tac f) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   517
apply (frule is_recfun_type)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   518
apply (rule_tac x=f in rexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   519
 apply (simp add: fun_is_function domain_of_fun lt_Memrel apply_recfun lt_def
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   520
                  is_oadd_fun_iff Ord_trans [OF _ succI1], assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   521
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   522
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   523
lemma (in M_ord_arith) is_oadd_fun_apply:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   524
    "[| x < j; M(i); M(j); M(f); is_oadd_fun(M,i,j,j,f) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   525
     ==> f`x = i Un (\<Union>k\<in>x. {f ` k})"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   526
apply (simp add: is_oadd_fun_iff lt_Ord2, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   527
apply (frule lt_closed, simp)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   528
apply (frule leI [THEN le_imp_subset])  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   529
apply (simp add: image_fun, blast) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   530
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   531
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   532
lemma (in M_ord_arith) is_oadd_fun_iff_oadd [rule_format]:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   533
    "[| is_oadd_fun(M,i,J,J,f); M(i); M(J); M(f); Ord(i); Ord(j) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   534
     ==> j<J --> f`j = i++j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   535
apply (erule_tac i=j in trans_induct, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   536
apply (subgoal_tac "\<forall>k\<in>x. k<J")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   537
 apply (simp (no_asm_simp) add: is_oadd_def oadd_unfold is_oadd_fun_apply)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   538
apply (blast intro: lt_trans ltI lt_Ord) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   539
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   540
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   541
lemma (in M_ord_arith) Ord_oadd_abs:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   542
    "[| M(i); M(j); M(k); Ord(i); Ord(j) |] ==> is_oadd(M,i,j,k) <-> k = i++j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   543
apply (simp add: is_oadd_def is_oadd_fun_iff_oadd)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   544
apply (frule exists_oadd_fun [of j i], blast+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   545
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   546
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   547
lemma (in M_ord_arith) oadd_abs:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   548
    "[| M(i); M(j); M(k) |] ==> is_oadd(M,i,j,k) <-> k = i++j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   549
apply (case_tac "Ord(i) & Ord(j)")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   550
 apply (simp add: Ord_oadd_abs)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   551
apply (auto simp add: is_oadd_def oadd_eq_if_raw_oadd)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   552
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   553
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   554
lemma (in M_ord_arith) oadd_closed [intro,simp]:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   555
    "[| M(i); M(j) |] ==> M(i++j)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   556
apply (simp add: oadd_eq_if_raw_oadd, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   557
apply (simp add: raw_oadd_eq_oadd) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   558
apply (frule exists_oadd_fun [of j i], auto)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   559
apply (simp add: apply_closed is_oadd_fun_iff_oadd [symmetric]) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   560
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   561
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   562
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   563
subsubsection{*Ordinal Multiplication*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   564
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   565
lemma omult_eqns_unique:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   566
     "[| omult_eqns(i,x,g,z); omult_eqns(i,x,g,z') |] ==> z=z'";
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   567
apply (simp add: omult_eqns_def, clarify) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   568
apply (erule Ord_cases, simp_all) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   569
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   570
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   571
lemma omult_eqns_0: "omult_eqns(i,0,g,z) <-> z=0"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   572
by (simp add: omult_eqns_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   573
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   574
lemma the_omult_eqns_0: "(THE z. omult_eqns(i,0,g,z)) = 0"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   575
by (simp add: omult_eqns_0)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   576
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   577
lemma omult_eqns_succ: "omult_eqns(i,succ(j),g,z) <-> Ord(j) & z = g`j ++ i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   578
by (simp add: omult_eqns_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   579
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   580
lemma the_omult_eqns_succ:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   581
     "Ord(j) ==> (THE z. omult_eqns(i,succ(j),g,z)) = g`j ++ i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   582
by (simp add: omult_eqns_succ) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   583
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   584
lemma omult_eqns_Limit:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   585
     "Limit(x) ==> omult_eqns(i,x,g,z) <-> z = \<Union>(g``x)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   586
apply (simp add: omult_eqns_def) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   587
apply (blast intro: Limit_is_Ord) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   588
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   589
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   590
lemma the_omult_eqns_Limit:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   591
     "Limit(x) ==> (THE z. omult_eqns(i,x,g,z)) = \<Union>(g``x)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   592
by (simp add: omult_eqns_Limit)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   593
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   594
lemma omult_eqns_Not: "~ Ord(x) ==> ~ omult_eqns(i,x,g,z)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   595
by (simp add: omult_eqns_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   596
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   597
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   598
lemma (in M_ord_arith) the_omult_eqns_closed:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   599
    "[| M(i); M(x); M(g); function(g) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   600
     ==> M(THE z. omult_eqns(i, x, g, z))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   601
apply (case_tac "Ord(x)")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   602
 prefer 2 apply (simp add: omult_eqns_Not) --{*trivial, non-Ord case*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   603
apply (erule Ord_cases) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   604
  apply (simp add: omult_eqns_0)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   605
 apply (simp add: omult_eqns_succ apply_closed oadd_closed) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   606
apply (simp add: omult_eqns_Limit) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   607
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   608
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   609
lemma (in M_ord_arith) exists_omult:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   610
    "[| Ord(j);  M(i);  M(j) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   611
     ==> \<exists>f[M]. is_recfun(Memrel(succ(j)), j, %x g. THE z. omult_eqns(i,x,g,z), f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   612
apply (rule wf_exists_is_recfun [OF wf_Memrel trans_Memrel])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   613
    apply (simp_all add: Memrel_type omult_strong_replacement') 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   614
apply (blast intro: the_omult_eqns_closed) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   615
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   616
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   617
lemma (in M_ord_arith) exists_omult_fun:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   618
    "[| Ord(j);  M(i);  M(j) |] ==> \<exists>f[M]. is_omult_fun(M,i,succ(j),f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   619
apply (rule exists_omult [THEN rexE])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   620
apply (erule Ord_succ, assumption, simp) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   621
apply (rename_tac f) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   622
apply (frule is_recfun_type)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   623
apply (rule_tac x=f in rexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   624
apply (simp add: fun_is_function domain_of_fun lt_Memrel apply_recfun lt_def
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   625
                 is_omult_fun_def Ord_trans [OF _ succI1])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   626
 apply (force dest: Ord_in_Ord' 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   627
              simp add: omult_eqns_def the_omult_eqns_0 the_omult_eqns_succ
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   628
                        the_omult_eqns_Limit, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   629
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   630
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   631
lemma (in M_ord_arith) is_omult_fun_apply_0:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   632
    "[| 0 < j; is_omult_fun(M,i,j,f) |] ==> f`0 = 0"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   633
by (simp add: is_omult_fun_def omult_eqns_def lt_def ball_conj_distrib)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   635
lemma (in M_ord_arith) is_omult_fun_apply_succ:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   636
    "[| succ(x) < j; is_omult_fun(M,i,j,f) |] ==> f`succ(x) = f`x ++ i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   637
by (simp add: is_omult_fun_def omult_eqns_def lt_def, blast) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   638
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   639
lemma (in M_ord_arith) is_omult_fun_apply_Limit:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   640
    "[| x < j; Limit(x); M(j); M(f); is_omult_fun(M,i,j,f) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   641
     ==> f ` x = (\<Union>y\<in>x. f`y)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   642
apply (simp add: is_omult_fun_def omult_eqns_def domain_closed lt_def, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   643
apply (drule subset_trans [OF OrdmemD], assumption+)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   644
apply (simp add: ball_conj_distrib omult_Limit image_function)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   645
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   646
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   647
lemma (in M_ord_arith) is_omult_fun_eq_omult:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   648
    "[| is_omult_fun(M,i,J,f); M(J); M(f); Ord(i); Ord(j) |] 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   649
     ==> j<J --> f`j = i**j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   650
apply (erule_tac i=j in trans_induct3)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   651
apply (safe del: impCE)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   652
  apply (simp add: is_omult_fun_apply_0) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   653
 apply (subgoal_tac "x<J") 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   654
  apply (simp add: is_omult_fun_apply_succ omult_succ)  
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   655
 apply (blast intro: lt_trans) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   656
apply (subgoal_tac "\<forall>k\<in>x. k<J")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   657
 apply (simp add: is_omult_fun_apply_Limit omult_Limit) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   658
apply (blast intro: lt_trans ltI lt_Ord) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   659
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   660
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   661
lemma (in M_ord_arith) omult_abs:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   662
    "[| M(i); M(j); M(k); Ord(i); Ord(j) |] ==> is_omult(M,i,j,k) <-> k = i**j"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   663
apply (simp add: is_omult_def is_omult_fun_eq_omult)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   664
apply (frule exists_omult_fun [of j i], blast+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   665
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   666
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   667
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   668
13647
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   669
subsection {*Absoluteness of Well-Founded Relations*}
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   670
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   671
text{*Relativized to @{term M}: Every well-founded relation is a subset of some
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   672
inverse image of an ordinal.  Key step is the construction (in @{term M}) of a
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   673
rank function.*}
7f6f0ffc45c3 tidying and reorganization
paulson
parents: 13634
diff changeset
   674
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   675
locale M_wfrank = M_trancl +
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   676
  assumes wfrank_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   677
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   678
      separation (M, \<lambda>x. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   679
         \<forall>rplus[M]. tran_closure(M,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   680
         ~ (\<exists>f[M]. M_is_recfun(M, %x f y. is_range(M,f,y), rplus, x, f)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   681
 and wfrank_strong_replacement:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   682
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   683
      strong_replacement(M, \<lambda>x z. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   684
         \<forall>rplus[M]. tran_closure(M,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   685
         (\<exists>y[M]. \<exists>f[M]. pair(M,x,y,z)  & 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   686
                        M_is_recfun(M, %x f y. is_range(M,f,y), rplus, x, f) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   687
                        is_range(M,f,y)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   688
 and Ord_wfrank_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   689
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   690
      separation (M, \<lambda>x.
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   691
         \<forall>rplus[M]. tran_closure(M,r,rplus) --> 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   692
          ~ (\<forall>f[M]. \<forall>rangef[M]. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   693
             is_range(M,f,rangef) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   694
             M_is_recfun(M, \<lambda>x f y. is_range(M,f,y), rplus, x, f) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   695
             ordinal(M,rangef)))" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   696
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   697
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   698
text{*Proving that the relativized instances of Separation or Replacement
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   699
agree with the "real" ones.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   700
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   701
lemma (in M_wfrank) wfrank_separation':
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   702
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   703
      separation
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   704
	   (M, \<lambda>x. ~ (\<exists>f[M]. is_recfun(r^+, x, %x f. range(f), f)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   705
apply (insert wfrank_separation [of r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   706
apply (simp add: relation2_def is_recfun_abs [of "%x. range"])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   707
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   708
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   709
lemma (in M_wfrank) wfrank_strong_replacement':
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   710
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   711
      strong_replacement(M, \<lambda>x z. \<exists>y[M]. \<exists>f[M]. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   712
		  pair(M,x,y,z) & is_recfun(r^+, x, %x f. range(f), f) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   713
		  y = range(f))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   714
apply (insert wfrank_strong_replacement [of r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   715
apply (simp add: relation2_def is_recfun_abs [of "%x. range"])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   716
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   717
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   718
lemma (in M_wfrank) Ord_wfrank_separation':
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   719
     "M(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   720
      separation (M, \<lambda>x. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   721
         ~ (\<forall>f[M]. is_recfun(r^+, x, \<lambda>x. range, f) --> Ord(range(f))))" 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   722
apply (insert Ord_wfrank_separation [of r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   723
apply (simp add: relation2_def is_recfun_abs [of "%x. range"])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   724
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   725
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   726
text{*This function, defined using replacement, is a rank function for
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   727
well-founded relations within the class M.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   728
constdefs
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   729
 wellfoundedrank :: "[i=>o,i,i] => i"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   730
    "wellfoundedrank(M,r,A) ==
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   731
        {p. x\<in>A, \<exists>y[M]. \<exists>f[M]. 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   732
                       p = <x,y> & is_recfun(r^+, x, %x f. range(f), f) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   733
                       y = range(f)}"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   734
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   735
lemma (in M_wfrank) exists_wfrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   736
    "[| wellfounded(M,r); M(a); M(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   737
     ==> \<exists>f[M]. is_recfun(r^+, a, %x f. range(f), f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   738
apply (rule wellfounded_exists_is_recfun)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   739
      apply (blast intro: wellfounded_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   740
     apply (rule trans_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   741
    apply (erule wfrank_separation')
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   742
   apply (erule wfrank_strong_replacement')
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   743
apply (simp_all add: trancl_subset_times)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   744
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   745
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   746
lemma (in M_wfrank) M_wellfoundedrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   747
    "[| wellfounded(M,r); M(r); M(A) |] ==> M(wellfoundedrank(M,r,A))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   748
apply (insert wfrank_strong_replacement' [of r])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   749
apply (simp add: wellfoundedrank_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   750
apply (rule strong_replacement_closed)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   751
   apply assumption+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   752
 apply (rule univalent_is_recfun)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   753
   apply (blast intro: wellfounded_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   754
  apply (rule trans_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   755
 apply (simp add: trancl_subset_times) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   756
apply (blast dest: transM) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   757
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   758
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   759
lemma (in M_wfrank) Ord_wfrank_range [rule_format]:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   760
    "[| wellfounded(M,r); a\<in>A; M(r); M(A) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   761
     ==> \<forall>f[M]. is_recfun(r^+, a, %x f. range(f), f) --> Ord(range(f))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   762
apply (drule wellfounded_trancl, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   763
apply (rule wellfounded_induct, assumption, erule (1) transM)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   764
  apply simp
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   765
 apply (blast intro: Ord_wfrank_separation', clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   766
txt{*The reasoning in both cases is that we get @{term y} such that
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   767
   @{term "\<langle>y, x\<rangle> \<in> r^+"}.  We find that
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   768
   @{term "f`y = restrict(f, r^+ -`` {y})"}. *}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   769
apply (rule OrdI [OF _ Ord_is_Transset])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   770
 txt{*An ordinal is a transitive set...*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   771
 apply (simp add: Transset_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   772
 apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   773
 apply (frule apply_recfun2, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   774
 apply (force simp add: restrict_iff)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   775
txt{*...of ordinals.  This second case requires the induction hyp.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   776
apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   777
apply (rename_tac i y)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   778
apply (frule apply_recfun2, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   779
apply (frule is_recfun_imp_in_r, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   780
apply (frule is_recfun_restrict)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   781
    (*simp_all won't work*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   782
    apply (simp add: trans_trancl trancl_subset_times)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   783
apply (drule spec [THEN mp], assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   784
apply (subgoal_tac "M(restrict(f, r^+ -`` {y}))")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   785
 apply (drule_tac x="restrict(f, r^+ -`` {y})" in rspec)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   786
apply assumption
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   787
 apply (simp add: function_apply_equality [OF _ is_recfun_imp_function])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   788
apply (blast dest: pair_components_in_M)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   789
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   790
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   791
lemma (in M_wfrank) Ord_range_wellfoundedrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   792
    "[| wellfounded(M,r); r \<subseteq> A*A;  M(r); M(A) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   793
     ==> Ord (range(wellfoundedrank(M,r,A)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   794
apply (frule wellfounded_trancl, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   795
apply (frule trancl_subset_times)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   796
apply (simp add: wellfoundedrank_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   797
apply (rule OrdI [OF _ Ord_is_Transset])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   798
 prefer 2
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   799
 txt{*by our previous result the range consists of ordinals.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   800
 apply (blast intro: Ord_wfrank_range)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   801
txt{*We still must show that the range is a transitive set.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   802
apply (simp add: Transset_def, clarify, simp)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   803
apply (rename_tac x i f u)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   804
apply (frule is_recfun_imp_in_r, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   805
apply (subgoal_tac "M(u) & M(i) & M(x)")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   806
 prefer 2 apply (blast dest: transM, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   807
apply (rule_tac a=u in rangeI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   808
apply (rule_tac x=u in ReplaceI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   809
  apply simp 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   810
  apply (rule_tac x="restrict(f, r^+ -`` {u})" in rexI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   811
   apply (blast intro: is_recfun_restrict trans_trancl dest: apply_recfun2)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   812
  apply simp 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   813
apply blast 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   814
txt{*Unicity requirement of Replacement*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   815
apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   816
apply (frule apply_recfun2, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   817
apply (simp add: trans_trancl is_recfun_cut)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   818
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   819
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   820
lemma (in M_wfrank) function_wellfoundedrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   821
    "[| wellfounded(M,r); M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   822
     ==> function(wellfoundedrank(M,r,A))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   823
apply (simp add: wellfoundedrank_def function_def, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   824
txt{*Uniqueness: repeated below!*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   825
apply (drule is_recfun_functional, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   826
     apply (blast intro: wellfounded_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   827
    apply (simp_all add: trancl_subset_times trans_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   828
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   829
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   830
lemma (in M_wfrank) domain_wellfoundedrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   831
    "[| wellfounded(M,r); M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   832
     ==> domain(wellfoundedrank(M,r,A)) = A"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   833
apply (simp add: wellfoundedrank_def function_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   834
apply (rule equalityI, auto)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   835
apply (frule transM, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   836
apply (frule_tac a=x in exists_wfrank, assumption+, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   837
apply (rule_tac b="range(f)" in domainI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   838
apply (rule_tac x=x in ReplaceI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   839
  apply simp 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   840
  apply (rule_tac x=f in rexI, blast, simp_all)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   841
txt{*Uniqueness (for Replacement): repeated above!*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   842
apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   843
apply (drule is_recfun_functional, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   844
    apply (blast intro: wellfounded_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   845
    apply (simp_all add: trancl_subset_times trans_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   846
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   847
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   848
lemma (in M_wfrank) wellfoundedrank_type:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   849
    "[| wellfounded(M,r);  M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   850
     ==> wellfoundedrank(M,r,A) \<in> A -> range(wellfoundedrank(M,r,A))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   851
apply (frule function_wellfoundedrank [of r A], assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   852
apply (frule function_imp_Pi)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   853
 apply (simp add: wellfoundedrank_def relation_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   854
 apply blast
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   855
apply (simp add: domain_wellfoundedrank)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   856
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   857
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   858
lemma (in M_wfrank) Ord_wellfoundedrank:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   859
    "[| wellfounded(M,r); a \<in> A; r \<subseteq> A*A;  M(r); M(A) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   860
     ==> Ord(wellfoundedrank(M,r,A) ` a)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   861
by (blast intro: apply_funtype [OF wellfoundedrank_type]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   862
                 Ord_in_Ord [OF Ord_range_wellfoundedrank])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   863
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   864
lemma (in M_wfrank) wellfoundedrank_eq:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   865
     "[| is_recfun(r^+, a, %x. range, f);
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   866
         wellfounded(M,r);  a \<in> A; M(f); M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   867
      ==> wellfoundedrank(M,r,A) ` a = range(f)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   868
apply (rule apply_equality)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   869
 prefer 2 apply (blast intro: wellfoundedrank_type)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   870
apply (simp add: wellfoundedrank_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   871
apply (rule ReplaceI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   872
  apply (rule_tac x="range(f)" in rexI) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   873
  apply blast
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   874
 apply simp_all
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   875
txt{*Unicity requirement of Replacement*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   876
apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   877
apply (drule is_recfun_functional, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   878
    apply (blast intro: wellfounded_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   879
    apply (simp_all add: trancl_subset_times trans_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   880
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   881
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   882
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   883
lemma (in M_wfrank) wellfoundedrank_lt:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   884
     "[| <a,b> \<in> r;
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   885
         wellfounded(M,r); r \<subseteq> A*A;  M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   886
      ==> wellfoundedrank(M,r,A) ` a < wellfoundedrank(M,r,A) ` b"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   887
apply (frule wellfounded_trancl, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   888
apply (subgoal_tac "a\<in>A & b\<in>A")
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   889
 prefer 2 apply blast
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   890
apply (simp add: lt_def Ord_wellfoundedrank, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   891
apply (frule exists_wfrank [of concl: _ b], erule (1) transM, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   892
apply clarify
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   893
apply (rename_tac fb)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   894
apply (frule is_recfun_restrict [of concl: "r^+" a])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   895
    apply (rule trans_trancl, assumption)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   896
   apply (simp_all add: r_into_trancl trancl_subset_times)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   897
txt{*Still the same goal, but with new @{text is_recfun} assumptions.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   898
apply (simp add: wellfoundedrank_eq)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   899
apply (frule_tac a=a in wellfoundedrank_eq, assumption+)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   900
   apply (simp_all add: transM [of a])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   901
txt{*We have used equations for wellfoundedrank and now must use some
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   902
    for  @{text is_recfun}. *}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   903
apply (rule_tac a=a in rangeI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   904
apply (simp add: is_recfun_type [THEN apply_iff] vimage_singleton_iff
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   905
                 r_into_trancl apply_recfun r_into_trancl)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   906
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   907
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   908
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   909
lemma (in M_wfrank) wellfounded_imp_subset_rvimage:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   910
     "[|wellfounded(M,r); r \<subseteq> A*A; M(r); M(A)|]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   911
      ==> \<exists>i f. Ord(i) & r <= rvimage(A, f, Memrel(i))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   912
apply (rule_tac x="range(wellfoundedrank(M,r,A))" in exI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   913
apply (rule_tac x="wellfoundedrank(M,r,A)" in exI)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   914
apply (simp add: Ord_range_wellfoundedrank, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   915
apply (frule subsetD, assumption, clarify)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   916
apply (simp add: rvimage_iff wellfoundedrank_lt [THEN ltD])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   917
apply (blast intro: apply_rangeI wellfoundedrank_type)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   918
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   919
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   920
lemma (in M_wfrank) wellfounded_imp_wf:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   921
     "[|wellfounded(M,r); relation(r); M(r)|] ==> wf(r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   922
by (blast dest!: relation_field_times_field wellfounded_imp_subset_rvimage
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   923
          intro: wf_rvimage_Ord [THEN wf_subset])
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   924
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   925
lemma (in M_wfrank) wellfounded_on_imp_wf_on:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   926
     "[|wellfounded_on(M,A,r); relation(r); M(r); M(A)|] ==> wf[A](r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   927
apply (simp add: wellfounded_on_iff_wellfounded wf_on_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   928
apply (rule wellfounded_imp_wf)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   929
apply (simp_all add: relation_def)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   930
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   931
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   932
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   933
theorem (in M_wfrank) wf_abs:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   934
     "[|relation(r); M(r)|] ==> wellfounded(M,r) <-> wf(r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   935
by (blast intro: wellfounded_imp_wf wf_imp_relativized)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   936
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   937
theorem (in M_wfrank) wf_on_abs:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   938
     "[|relation(r); M(r); M(A)|] ==> wellfounded_on(M,A,r) <-> wf[A](r)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   939
by (blast intro: wellfounded_on_imp_wf_on wf_on_imp_relativized)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   940
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   941
end