src/ZF/Constructible/Rank_Separation.thy
author huffman
Thu, 26 May 2005 02:23:27 +0200
changeset 16081 81a4b4a245b0
parent 13807 a28a8fbc76d4
child 16417 9bc16273c2d4
permissions -rw-r--r--
cleaned up, added cpair_less and cpair_eq_pair, removed some obsolete stuff
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_Separation.thy
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     2
    ID:   $Id$
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     4
*)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     5
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     6
header {*Separation for Facts About Order Types, Rank Functions and 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     7
      Well-Founded Relations*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     8
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
     9
theory Rank_Separation = Rank + Rec_Separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    10
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    11
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    12
text{*This theory proves all instances needed for locales
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    13
 @{text "M_ordertype"} and  @{text "M_wfrank"}.  But the material is not
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    14
 needed for proving the relative consistency of AC.*}
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    15
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    16
subsection{*The Locale @{text "M_ordertype"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    17
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    18
subsubsection{*Separation for Order-Isomorphisms*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    19
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    20
lemma well_ord_iso_Reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    21
  "REFLECTS[\<lambda>x. x\<in>A -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    22
                (\<exists>y[L]. \<exists>p[L]. fun_apply(L,f,x,y) & pair(L,y,x,p) & p \<in> r),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    23
        \<lambda>i x. x\<in>A --> (\<exists>y \<in> Lset(i). \<exists>p \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    24
                fun_apply(##Lset(i),f,x,y) & pair(##Lset(i),y,x,p) & p \<in> r)]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    25
by (intro FOL_reflections function_reflections)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    26
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    27
lemma well_ord_iso_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    28
     "[| L(A); L(f); L(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    29
      ==> separation (L, \<lambda>x. x\<in>A --> (\<exists>y[L]. (\<exists>p[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    30
                     fun_apply(L,f,x,y) & pair(L,y,x,p) & p \<in> r)))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    31
apply (rule gen_separation_multi [OF well_ord_iso_Reflects, of "{A,f,r}"], 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    32
       auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    33
apply (rule_tac env="[A,f,r]" in DPow_LsetI)
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    34
apply (rule sep_rules | simp)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    35
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    36
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    37
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    38
subsubsection{*Separation for @{term "obase"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    39
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    40
lemma obase_reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    41
  "REFLECTS[\<lambda>a. \<exists>x[L]. \<exists>g[L]. \<exists>mx[L]. \<exists>par[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    42
             ordinal(L,x) & membership(L,x,mx) & pred_set(L,A,a,r,par) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    43
             order_isomorphism(L,par,r,x,mx,g),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    44
        \<lambda>i a. \<exists>x \<in> Lset(i). \<exists>g \<in> Lset(i). \<exists>mx \<in> Lset(i). \<exists>par \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    45
             ordinal(##Lset(i),x) & membership(##Lset(i),x,mx) & pred_set(##Lset(i),A,a,r,par) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    46
             order_isomorphism(##Lset(i),par,r,x,mx,g)]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    47
by (intro FOL_reflections function_reflections fun_plus_reflections)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    48
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    49
lemma obase_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    50
     --{*part of the order type formalization*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    51
     "[| L(A); L(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    52
      ==> separation(L, \<lambda>a. \<exists>x[L]. \<exists>g[L]. \<exists>mx[L]. \<exists>par[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    53
             ordinal(L,x) & membership(L,x,mx) & pred_set(L,A,a,r,par) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    54
             order_isomorphism(L,par,r,x,mx,g))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    55
apply (rule gen_separation_multi [OF obase_reflects, of "{A,r}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    56
apply (rule_tac env="[A,r]" in DPow_LsetI)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    57
apply (rule ordinal_iff_sats sep_rules | simp)+
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    58
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    59
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    60
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    61
subsubsection{*Separation for a Theorem about @{term "obase"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    62
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    63
lemma obase_equals_reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    64
  "REFLECTS[\<lambda>x. x\<in>A --> ~(\<exists>y[L]. \<exists>g[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    65
                ordinal(L,y) & (\<exists>my[L]. \<exists>pxr[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    66
                membership(L,y,my) & pred_set(L,A,x,r,pxr) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    67
                order_isomorphism(L,pxr,r,y,my,g))),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    68
        \<lambda>i x. x\<in>A --> ~(\<exists>y \<in> Lset(i). \<exists>g \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    69
                ordinal(##Lset(i),y) & (\<exists>my \<in> Lset(i). \<exists>pxr \<in> Lset(i).
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    70
                membership(##Lset(i),y,my) & pred_set(##Lset(i),A,x,r,pxr) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    71
                order_isomorphism(##Lset(i),pxr,r,y,my,g)))]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    72
by (intro FOL_reflections function_reflections fun_plus_reflections)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    73
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    74
lemma obase_equals_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    75
     "[| L(A); L(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    76
      ==> separation (L, \<lambda>x. x\<in>A --> ~(\<exists>y[L]. \<exists>g[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    77
                              ordinal(L,y) & (\<exists>my[L]. \<exists>pxr[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    78
                              membership(L,y,my) & pred_set(L,A,x,r,pxr) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    79
                              order_isomorphism(L,pxr,r,y,my,g))))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    80
apply (rule gen_separation_multi [OF obase_equals_reflects, of "{A,r}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    81
apply (rule_tac env="[A,r]" in DPow_LsetI)
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    82
apply (rule sep_rules | simp)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    83
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    84
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    85
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    86
subsubsection{*Replacement for @{term "omap"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    87
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    88
lemma omap_reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    89
 "REFLECTS[\<lambda>z. \<exists>a[L]. a\<in>B & (\<exists>x[L]. \<exists>g[L]. \<exists>mx[L]. \<exists>par[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    90
     ordinal(L,x) & pair(L,a,x,z) & membership(L,x,mx) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    91
     pred_set(L,A,a,r,par) & order_isomorphism(L,par,r,x,mx,g)),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    92
 \<lambda>i z. \<exists>a \<in> Lset(i). a\<in>B & (\<exists>x \<in> Lset(i). \<exists>g \<in> Lset(i). \<exists>mx \<in> Lset(i).
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    93
        \<exists>par \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    94
         ordinal(##Lset(i),x) & pair(##Lset(i),a,x,z) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    95
         membership(##Lset(i),x,mx) & pred_set(##Lset(i),A,a,r,par) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
    96
         order_isomorphism(##Lset(i),par,r,x,mx,g))]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    97
by (intro FOL_reflections function_reflections fun_plus_reflections)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    98
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
    99
lemma omap_replacement:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   100
     "[| L(A); L(r) |]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   101
      ==> strong_replacement(L,
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   102
             \<lambda>a z. \<exists>x[L]. \<exists>g[L]. \<exists>mx[L]. \<exists>par[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   103
             ordinal(L,x) & pair(L,a,x,z) & membership(L,x,mx) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   104
             pred_set(L,A,a,r,par) & order_isomorphism(L,par,r,x,mx,g))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   105
apply (rule strong_replacementI)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   106
apply (rule_tac u="{A,r,B}" in gen_separation_multi [OF omap_reflects], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   107
apply (rule_tac env="[A,B,r]" in DPow_LsetI)
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   108
apply (rule sep_rules | simp)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   109
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   110
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   111
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   112
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   113
subsection{*Instantiating the locale @{text M_ordertype}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   114
text{*Separation (and Strong Replacement) for basic set-theoretic constructions
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   115
such as intersection, Cartesian Product and image.*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   116
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   117
lemma M_ordertype_axioms_L: "M_ordertype_axioms(L)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   118
  apply (rule M_ordertype_axioms.intro)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   119
       apply (assumption | rule well_ord_iso_separation
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   120
	 obase_separation obase_equals_separation
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   121
	 omap_replacement)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   122
  done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   123
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   124
theorem M_ordertype_L: "PROP M_ordertype(L)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   125
apply (rule M_ordertype.intro)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   126
     apply (rule M_basic.axioms [OF M_basic_L])+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   127
apply (rule M_ordertype_axioms_L) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   128
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   129
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   130
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   131
subsection{*The Locale @{text "M_wfrank"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   132
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   133
subsubsection{*Separation for @{term "wfrank"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   134
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   135
lemma wfrank_Reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   136
 "REFLECTS[\<lambda>x. \<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   137
              ~ (\<exists>f[L]. M_is_recfun(L, %x f y. is_range(L,f,y), rplus, x, f)),
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   138
      \<lambda>i x. \<forall>rplus \<in> Lset(i). tran_closure(##Lset(i),r,rplus) -->
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   139
         ~ (\<exists>f \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   140
            M_is_recfun(##Lset(i), %x f y. is_range(##Lset(i),f,y),
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   141
                        rplus, x, f))]"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   142
by (intro FOL_reflections function_reflections is_recfun_reflection tran_closure_reflection)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   143
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   144
lemma wfrank_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   145
     "L(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   146
      separation (L, \<lambda>x. \<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   147
         ~ (\<exists>f[L]. M_is_recfun(L, %x f y. is_range(L,f,y), rplus, x, f)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   148
apply (rule gen_separation [OF wfrank_Reflects], simp)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   149
apply (rule_tac env="[r]" in DPow_LsetI)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   150
apply (rule sep_rules tran_closure_iff_sats is_recfun_iff_sats | simp)+
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   151
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   152
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   153
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   154
subsubsection{*Replacement for @{term "wfrank"}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   155
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   156
lemma wfrank_replacement_Reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   157
 "REFLECTS[\<lambda>z. \<exists>x[L]. x \<in> A &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   158
        (\<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   159
         (\<exists>y[L]. \<exists>f[L]. pair(L,x,y,z)  &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   160
                        M_is_recfun(L, %x f y. is_range(L,f,y), rplus, x, f) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   161
                        is_range(L,f,y))),
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   162
 \<lambda>i z. \<exists>x \<in> Lset(i). x \<in> A &
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   163
      (\<forall>rplus \<in> Lset(i). tran_closure(##Lset(i),r,rplus) -->
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   164
       (\<exists>y \<in> Lset(i). \<exists>f \<in> Lset(i). pair(##Lset(i),x,y,z)  &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   165
         M_is_recfun(##Lset(i), %x f y. is_range(##Lset(i),f,y), rplus, x, f) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   166
         is_range(##Lset(i),f,y)))]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   167
by (intro FOL_reflections function_reflections fun_plus_reflections
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   168
             is_recfun_reflection tran_closure_reflection)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   169
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   170
lemma wfrank_strong_replacement:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   171
     "L(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   172
      strong_replacement(L, \<lambda>x z.
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   173
         \<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   174
         (\<exists>y[L]. \<exists>f[L]. pair(L,x,y,z)  &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   175
                        M_is_recfun(L, %x f y. is_range(L,f,y), rplus, x, f) &
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   176
                        is_range(L,f,y)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   177
apply (rule strong_replacementI)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   178
apply (rule_tac u="{r,B}" 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   179
         in gen_separation_multi [OF wfrank_replacement_Reflects], 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   180
       auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   181
apply (rule_tac env="[r,B]" in DPow_LsetI)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   182
apply (rule sep_rules tran_closure_iff_sats is_recfun_iff_sats | simp)+
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   183
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   184
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   185
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   186
subsubsection{*Separation for Proving @{text Ord_wfrank_range}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   187
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   188
lemma Ord_wfrank_Reflects:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   189
 "REFLECTS[\<lambda>x. \<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   190
          ~ (\<forall>f[L]. \<forall>rangef[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   191
             is_range(L,f,rangef) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   192
             M_is_recfun(L, \<lambda>x f y. is_range(L,f,y), rplus, x, f) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   193
             ordinal(L,rangef)),
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   194
      \<lambda>i x. \<forall>rplus \<in> Lset(i). tran_closure(##Lset(i),r,rplus) -->
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   195
          ~ (\<forall>f \<in> Lset(i). \<forall>rangef \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   196
             is_range(##Lset(i),f,rangef) -->
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   197
             M_is_recfun(##Lset(i), \<lambda>x f y. is_range(##Lset(i),f,y),
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   198
                         rplus, x, f) -->
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13687
diff changeset
   199
             ordinal(##Lset(i),rangef))]"
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   200
by (intro FOL_reflections function_reflections is_recfun_reflection
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   201
          tran_closure_reflection ordinal_reflection)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   202
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   203
lemma  Ord_wfrank_separation:
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   204
     "L(r) ==>
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   205
      separation (L, \<lambda>x.
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   206
         \<forall>rplus[L]. tran_closure(L,r,rplus) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   207
          ~ (\<forall>f[L]. \<forall>rangef[L].
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   208
             is_range(L,f,rangef) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   209
             M_is_recfun(L, \<lambda>x f y. is_range(L,f,y), rplus, x, f) -->
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   210
             ordinal(L,rangef)))"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   211
apply (rule gen_separation [OF Ord_wfrank_Reflects], simp)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   212
apply (rule_tac env="[r]" in DPow_LsetI)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   213
apply (rule sep_rules tran_closure_iff_sats is_recfun_iff_sats | simp)+
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   214
done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   215
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   216
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   217
subsubsection{*Instantiating the locale @{text M_wfrank}*}
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   218
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   219
lemma M_wfrank_axioms_L: "M_wfrank_axioms(L)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   220
  apply (rule M_wfrank_axioms.intro)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   221
   apply (assumption | rule
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   222
     wfrank_separation wfrank_strong_replacement Ord_wfrank_separation)+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   223
  done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   224
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   225
theorem M_wfrank_L: "PROP M_wfrank(L)"
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   226
  apply (rule M_wfrank.intro)
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   227
     apply (rule M_trancl.axioms [OF M_trancl_L])+
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   228
  apply (rule M_wfrank_axioms_L) 
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   229
  done
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   230
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   231
lemmas exists_wfrank = M_wfrank.exists_wfrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   232
  and M_wellfoundedrank = M_wfrank.M_wellfoundedrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   233
  and Ord_wfrank_range = M_wfrank.Ord_wfrank_range [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   234
  and Ord_range_wellfoundedrank = M_wfrank.Ord_range_wellfoundedrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   235
  and function_wellfoundedrank = M_wfrank.function_wellfoundedrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   236
  and domain_wellfoundedrank = M_wfrank.domain_wellfoundedrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   237
  and wellfoundedrank_type = M_wfrank.wellfoundedrank_type [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   238
  and Ord_wellfoundedrank = M_wfrank.Ord_wellfoundedrank [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   239
  and wellfoundedrank_eq = M_wfrank.wellfoundedrank_eq [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   240
  and wellfoundedrank_lt = M_wfrank.wellfoundedrank_lt [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   241
  and wellfounded_imp_subset_rvimage = M_wfrank.wellfounded_imp_subset_rvimage [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   242
  and wellfounded_imp_wf = M_wfrank.wellfounded_imp_wf [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   243
  and wellfounded_on_imp_wf_on = M_wfrank.wellfounded_on_imp_wf_on [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   244
  and wf_abs = M_wfrank.wf_abs [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   245
  and wf_on_abs = M_wfrank.wf_on_abs [OF M_wfrank_L]
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   246
99a593b49b04 Re-organization of Constructible theories
paulson
parents:
diff changeset
   247
end