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