src/ZF/Constructible/Separation.thy
author ballarin
Mon, 18 Apr 2005 15:54:23 +0200
changeset 15766 b08feb003f3c
parent 13807 a28a8fbc76d4
child 16417 9bc16273c2d4
permissions -rw-r--r--
Cleaned up, now use interpretation.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13437
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
     1
(*  Title:      ZF/Constructible/Separation.thy
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
     2
    ID:         $Id$
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
     4
*)
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
     5
13339
0f89104dd377 Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents: 13324
diff changeset
     6
header{*Early Instances of Separation and Strong Replacement*}
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
     7
13324
39d1b3a4c6f4 more and simpler separation proofs
paulson
parents: 13323
diff changeset
     8
theory Separation = L_axioms + WF_absolute:
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
     9
13564
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
    10
text{*This theory proves all instances needed for locale @{text "M_basic"}*}
13339
0f89104dd377 Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents: 13324
diff changeset
    11
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    12
text{*Helps us solve for de Bruijn indices!*}
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    13
lemma nth_ConsI: "[|nth(n,l) = x; n \<in> nat|] ==> nth(succ(n), Cons(a,l)) = x"
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    14
by simp
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    15
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
    16
lemmas nth_rules = nth_0 nth_ConsI nat_0I nat_succI
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    17
lemmas sep_rules = nth_0 nth_ConsI FOL_iff_sats function_iff_sats
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
    18
                   fun_plus_iff_sats
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    19
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    20
lemma Collect_conj_in_DPow:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    21
     "[| {x\<in>A. P(x)} \<in> DPow(A);  {x\<in>A. Q(x)} \<in> DPow(A) |]
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    22
      ==> {x\<in>A. P(x) & Q(x)} \<in> DPow(A)"
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    23
by (simp add: Int_in_DPow Collect_Int_Collect_eq [symmetric])
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    24
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    25
lemma Collect_conj_in_DPow_Lset:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    26
     "[|z \<in> Lset(j); {x \<in> Lset(j). P(x)} \<in> DPow(Lset(j))|]
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    27
      ==> {x \<in> Lset(j). x \<in> z & P(x)} \<in> DPow(Lset(j))"
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    28
apply (frule mem_Lset_imp_subset_Lset)
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    29
apply (simp add: Collect_conj_in_DPow Collect_mem_eq
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    30
                 subset_Int_iff2 elem_subset_in_DPow)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    31
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    32
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    33
lemma separation_CollectI:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    34
     "(\<And>z. L(z) ==> L({x \<in> z . P(x)})) ==> separation(L, \<lambda>x. P(x))"
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    35
apply (unfold separation_def, clarify)
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    36
apply (rule_tac x="{x\<in>z. P(x)}" in rexI)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    37
apply simp_all
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    38
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    39
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    40
text{*Reduces the original comprehension to the reflected one*}
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    41
lemma reflection_imp_L_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    42
      "[| \<forall>x\<in>Lset(j). P(x) <-> Q(x);
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    43
          {x \<in> Lset(j) . Q(x)} \<in> DPow(Lset(j));
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    44
          Ord(j);  z \<in> Lset(j)|] ==> L({x \<in> z . P(x)})"
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    45
apply (rule_tac i = "succ(j)" in L_I)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    46
 prefer 2 apply simp
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    47
apply (subgoal_tac "{x \<in> z. P(x)} = {x \<in> Lset(j). x \<in> z & (Q(x))}")
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    48
 prefer 2
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    49
 apply (blast dest: mem_Lset_imp_subset_Lset)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    50
apply (simp add: Lset_succ Collect_conj_in_DPow_Lset)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    51
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    52
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    53
text{*Encapsulates the standard proof script for proving instances of 
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    54
      Separation.*}
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    55
lemma gen_separation:
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    56
 assumes reflection: "REFLECTS [P,Q]"
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    57
     and Lu:         "L(u)"
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    58
     and collI: "!!j. u \<in> Lset(j)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    59
                \<Longrightarrow> Collect(Lset(j), Q(j)) \<in> DPow(Lset(j))"
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    60
 shows "separation(L,P)"
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    61
apply (rule separation_CollectI)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    62
apply (rule_tac A="{u,z}" in subset_LsetE, blast intro: Lu)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    63
apply (rule ReflectsE [OF reflection], assumption)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    64
apply (drule subset_Lset_ltD, assumption)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    65
apply (erule reflection_imp_L_separation)
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    66
  apply (simp_all add: lt_Ord2, clarify)
13691
paulson
parents: 13687
diff changeset
    67
apply (rule collI, assumption)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    68
done
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    69
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    70
text{*As above, but typically @{term u} is a finite enumeration such as
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    71
  @{term "{a,b}"}; thus the new subgoal gets the assumption
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    72
  @{term "{a,b} \<subseteq> Lset(i)"}, which is logically equivalent to 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    73
  @{term "a \<in> Lset(i)"} and @{term "b \<in> Lset(i)"}.*}
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    74
lemma gen_separation_multi:
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    75
 assumes reflection: "REFLECTS [P,Q]"
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    76
     and Lu:         "L(u)"
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    77
     and collI: "!!j. u \<subseteq> Lset(j)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    78
                \<Longrightarrow> Collect(Lset(j), Q(j)) \<in> DPow(Lset(j))"
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    79
 shows "separation(L,P)"
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    80
apply (rule gen_separation [OF reflection Lu])
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    81
apply (drule mem_Lset_imp_subset_Lset)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    82
apply (erule collI) 
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    83
done
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    84
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    85
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
    86
subsection{*Separation for Intersection*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    87
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    88
lemma Inter_Reflects:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    89
     "REFLECTS[\<lambda>x. \<forall>y[L]. y\<in>A --> x \<in> y,
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
    90
               \<lambda>i x. \<forall>y\<in>Lset(i). y\<in>A --> x \<in> y]"
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    91
by (intro FOL_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    92
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    93
lemma Inter_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
    94
     "L(A) ==> separation(L, \<lambda>x. \<forall>y[L]. y\<in>A --> x\<in>y)"
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
    95
apply (rule gen_separation [OF Inter_Reflects], simp)
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    96
apply (rule DPow_LsetI)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    97
 txt{*I leave this one example of a manual proof.  The tedium of manually
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
    98
      instantiating @{term i}, @{term j} and @{term env} is obvious. *}
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
    99
apply (rule ball_iff_sats)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   100
apply (rule imp_iff_sats)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   101
apply (rule_tac [2] i=1 and j=0 and env="[y,x,A]" in mem_iff_sats)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   102
apply (rule_tac i=0 and j=2 in mem_iff_sats)
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   103
apply (simp_all add: succ_Un_distrib [symmetric])
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   104
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   105
13437
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   106
subsection{*Separation for Set Difference*}
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   107
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   108
lemma Diff_Reflects:
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   109
     "REFLECTS[\<lambda>x. x \<notin> B, \<lambda>i x. x \<notin> B]"
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   110
by (intro FOL_reflections)  
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   111
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   112
lemma Diff_separation:
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   113
     "L(B) ==> separation(L, \<lambda>x. x \<notin> B)"
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
   114
apply (rule gen_separation [OF Diff_Reflects], simp)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   115
apply (rule_tac env="[B]" in DPow_LsetI)
13437
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   116
apply (rule sep_rules | simp)+
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   117
done
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   118
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   119
subsection{*Separation for Cartesian Product*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   120
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   121
lemma cartprod_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   122
     "REFLECTS[\<lambda>z. \<exists>x[L]. x\<in>A & (\<exists>y[L]. y\<in>B & pair(L,x,y,z)),
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   123
                \<lambda>i z. \<exists>x\<in>Lset(i). x\<in>A & (\<exists>y\<in>Lset(i). y\<in>B &
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   124
                                   pair(##Lset(i),x,y,z))]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   125
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   126
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   127
lemma cartprod_separation:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   128
     "[| L(A); L(B) |]
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   129
      ==> separation(L, \<lambda>z. \<exists>x[L]. x\<in>A & (\<exists>y[L]. y\<in>B & pair(L,x,y,z)))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   130
apply (rule gen_separation_multi [OF cartprod_Reflects, of "{A,B}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   131
apply (rule_tac env="[A,B]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   132
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   133
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   134
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   135
subsection{*Separation for Image*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   136
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   137
lemma image_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   138
     "REFLECTS[\<lambda>y. \<exists>p[L]. p\<in>r & (\<exists>x[L]. x\<in>A & pair(L,x,y,p)),
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   139
           \<lambda>i y. \<exists>p\<in>Lset(i). p\<in>r & (\<exists>x\<in>Lset(i). x\<in>A & pair(##Lset(i),x,y,p))]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   140
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   141
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   142
lemma image_separation:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   143
     "[| L(A); L(r) |]
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   144
      ==> separation(L, \<lambda>y. \<exists>p[L]. p\<in>r & (\<exists>x[L]. x\<in>A & pair(L,x,y,p)))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   145
apply (rule gen_separation_multi [OF image_Reflects, of "{A,r}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   146
apply (rule_tac env="[A,r]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   147
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   148
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   149
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   150
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   151
subsection{*Separation for Converse*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   152
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   153
lemma converse_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   154
  "REFLECTS[\<lambda>z. \<exists>p[L]. p\<in>r & (\<exists>x[L]. \<exists>y[L]. pair(L,x,y,p) & pair(L,y,x,z)),
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   155
     \<lambda>i z. \<exists>p\<in>Lset(i). p\<in>r & (\<exists>x\<in>Lset(i). \<exists>y\<in>Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   156
                     pair(##Lset(i),x,y,p) & pair(##Lset(i),y,x,z))]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   157
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   158
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   159
lemma converse_separation:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   160
     "L(r) ==> separation(L,
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   161
         \<lambda>z. \<exists>p[L]. p\<in>r & (\<exists>x[L]. \<exists>y[L]. pair(L,x,y,p) & pair(L,y,x,z)))"
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
   162
apply (rule gen_separation [OF converse_Reflects], simp)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   163
apply (rule_tac env="[r]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   164
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   165
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   166
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   167
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   168
subsection{*Separation for Restriction*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   169
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   170
lemma restrict_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   171
     "REFLECTS[\<lambda>z. \<exists>x[L]. x\<in>A & (\<exists>y[L]. pair(L,x,y,z)),
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   172
        \<lambda>i z. \<exists>x\<in>Lset(i). x\<in>A & (\<exists>y\<in>Lset(i). pair(##Lset(i),x,y,z))]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   173
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   174
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   175
lemma restrict_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   176
   "L(A) ==> separation(L, \<lambda>z. \<exists>x[L]. x\<in>A & (\<exists>y[L]. pair(L,x,y,z)))"
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
   177
apply (rule gen_separation [OF restrict_Reflects], simp)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   178
apply (rule_tac env="[A]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   179
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   180
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   181
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   182
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   183
subsection{*Separation for Composition*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   184
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   185
lemma comp_Reflects:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   186
     "REFLECTS[\<lambda>xz. \<exists>x[L]. \<exists>y[L]. \<exists>z[L]. \<exists>xy[L]. \<exists>yz[L].
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   187
                  pair(L,x,z,xz) & pair(L,x,y,xy) & pair(L,y,z,yz) &
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   188
                  xy\<in>s & yz\<in>r,
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   189
        \<lambda>i xz. \<exists>x\<in>Lset(i). \<exists>y\<in>Lset(i). \<exists>z\<in>Lset(i). \<exists>xy\<in>Lset(i). \<exists>yz\<in>Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   190
                  pair(##Lset(i),x,z,xz) & pair(##Lset(i),x,y,xy) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   191
                  pair(##Lset(i),y,z,yz) & xy\<in>s & yz\<in>r]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   192
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   193
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   194
lemma comp_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   195
     "[| L(r); L(s) |]
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   196
      ==> separation(L, \<lambda>xz. \<exists>x[L]. \<exists>y[L]. \<exists>z[L]. \<exists>xy[L]. \<exists>yz[L].
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   197
                  pair(L,x,z,xz) & pair(L,x,y,xy) & pair(L,y,z,yz) &
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   198
                  xy\<in>s & yz\<in>r)"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   199
apply (rule gen_separation_multi [OF comp_Reflects, of "{r,s}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   200
txt{*Subgoals after applying general ``separation'' rule:
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   201
     @{subgoals[display,indent=0,margin=65]}*}
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   202
apply (rule_tac env="[r,s]" in DPow_LsetI)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   203
txt{*Subgoals ready for automatic synthesis of a formula:
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   204
     @{subgoals[display,indent=0,margin=65]}*}
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   205
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   206
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   207
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   208
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   209
subsection{*Separation for Predecessors in an Order*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   210
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   211
lemma pred_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   212
     "REFLECTS[\<lambda>y. \<exists>p[L]. p\<in>r & pair(L,y,x,p),
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   213
                    \<lambda>i y. \<exists>p \<in> Lset(i). p\<in>r & pair(##Lset(i),y,x,p)]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   214
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   215
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   216
lemma pred_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   217
     "[| L(r); L(x) |] ==> separation(L, \<lambda>y. \<exists>p[L]. p\<in>r & pair(L,y,x,p))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   218
apply (rule gen_separation_multi [OF pred_Reflects, of "{r,x}"], auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   219
apply (rule_tac env="[r,x]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   220
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   221
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   222
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   223
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   224
subsection{*Separation for the Membership Relation*}
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   225
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   226
lemma Memrel_Reflects:
13314
84b9de3cbc91 Defining a meta-existential quantifier.
paulson
parents: 13306
diff changeset
   227
     "REFLECTS[\<lambda>z. \<exists>x[L]. \<exists>y[L]. pair(L,x,y,z) & x \<in> y,
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   228
            \<lambda>i z. \<exists>x \<in> Lset(i). \<exists>y \<in> Lset(i). pair(##Lset(i),x,y,z) & x \<in> y]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   229
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   230
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   231
lemma Memrel_separation:
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   232
     "separation(L, \<lambda>z. \<exists>x[L]. \<exists>y[L]. pair(L,x,y,z) & x \<in> y)"
13566
52a419210d5c Streamlined proofs of instances of Separation
paulson
parents: 13564
diff changeset
   233
apply (rule gen_separation [OF Memrel_Reflects nonempty])
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   234
apply (rule_tac env="[]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   235
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   236
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   237
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   238
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   239
subsection{*Replacement for FunSpace*}
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   240
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   241
lemma funspace_succ_Reflects:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   242
 "REFLECTS[\<lambda>z. \<exists>p[L]. p\<in>A & (\<exists>f[L]. \<exists>b[L]. \<exists>nb[L]. \<exists>cnbf[L].
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   243
            pair(L,f,b,p) & pair(L,n,b,nb) & is_cons(L,nb,f,cnbf) &
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   244
            upair(L,cnbf,cnbf,z)),
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   245
        \<lambda>i z. \<exists>p \<in> Lset(i). p\<in>A & (\<exists>f \<in> Lset(i). \<exists>b \<in> Lset(i).
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   246
              \<exists>nb \<in> Lset(i). \<exists>cnbf \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   247
                pair(##Lset(i),f,b,p) & pair(##Lset(i),n,b,nb) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   248
                is_cons(##Lset(i),nb,f,cnbf) & upair(##Lset(i),cnbf,cnbf,z))]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   249
by (intro FOL_reflections function_reflections)
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   250
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   251
lemma funspace_succ_replacement:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   252
     "L(n) ==>
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   253
      strong_replacement(L, \<lambda>p z. \<exists>f[L]. \<exists>b[L]. \<exists>nb[L]. \<exists>cnbf[L].
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   254
                pair(L,f,b,p) & pair(L,n,b,nb) & is_cons(L,nb,f,cnbf) &
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   255
                upair(L,cnbf,cnbf,z))"
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   256
apply (rule strong_replacementI)
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   257
apply (rule_tac u="{n,B}" in gen_separation_multi [OF funspace_succ_Reflects], 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   258
       auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   259
apply (rule_tac env="[n,B]" in DPow_LsetI)
13316
d16629fd0f95 more and simpler separation proofs
paulson
parents: 13314
diff changeset
   260
apply (rule sep_rules | simp)+
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   261
done
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   262
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   263
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents: 13628
diff changeset
   264
subsection{*Separation for a Theorem about @{term "is_recfun"}*}
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   265
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   266
lemma is_recfun_reflects:
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   267
  "REFLECTS[\<lambda>x. \<exists>xa[L]. \<exists>xb[L].
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   268
                pair(L,x,a,xa) & xa \<in> r & pair(L,x,b,xb) & xb \<in> r &
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   269
                (\<exists>fx[L]. \<exists>gx[L]. fun_apply(L,f,x,fx) & fun_apply(L,g,x,gx) &
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   270
                                   fx \<noteq> gx),
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   271
   \<lambda>i x. \<exists>xa \<in> Lset(i). \<exists>xb \<in> Lset(i).
13807
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   272
          pair(##Lset(i),x,a,xa) & xa \<in> r & pair(##Lset(i),x,b,xb) & xb \<in> r &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   273
                (\<exists>fx \<in> Lset(i). \<exists>gx \<in> Lset(i). fun_apply(##Lset(i),f,x,fx) &
a28a8fbc76d4 changed ** to ## to avoid conflict with new comment syntax
paulson
parents: 13691
diff changeset
   274
                  fun_apply(##Lset(i),g,x,gx) & fx \<noteq> gx)]"
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   275
by (intro FOL_reflections function_reflections fun_plus_reflections)
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   276
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   277
lemma is_recfun_separation:
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   278
     --{*for well-founded recursion*}
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   279
     "[| L(r); L(f); L(g); L(a); L(b) |]
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   280
     ==> separation(L,
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   281
            \<lambda>x. \<exists>xa[L]. \<exists>xb[L].
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   282
                pair(L,x,a,xa) & xa \<in> r & pair(L,x,b,xb) & xb \<in> r &
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   283
                (\<exists>fx[L]. \<exists>gx[L]. fun_apply(L,f,x,fx) & fun_apply(L,g,x,gx) &
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   284
                                   fx \<noteq> gx))"
13687
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   285
apply (rule gen_separation_multi [OF is_recfun_reflects, of "{r,f,g,a,b}"], 
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   286
            auto)
22dce9134953 simpler separation/replacement proofs
paulson
parents: 13634
diff changeset
   287
apply (rule_tac env="[r,f,g,a,b]" in DPow_LsetI)
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   288
apply (rule sep_rules | simp)+
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   289
done
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   290
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   291
13564
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
   292
subsection{*Instantiating the locale @{text M_basic}*}
13363
c26eeb000470 instantiation of locales M_trancl and M_wfrank;
paulson
parents: 13352
diff changeset
   293
text{*Separation (and Strong Replacement) for basic set-theoretic constructions
c26eeb000470 instantiation of locales M_trancl and M_wfrank;
paulson
parents: 13352
diff changeset
   294
such as intersection, Cartesian Product and image.*}
c26eeb000470 instantiation of locales M_trancl and M_wfrank;
paulson
parents: 13352
diff changeset
   295
13564
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
   296
lemma M_basic_axioms_L: "M_basic_axioms(L)"
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
   297
  apply (rule M_basic_axioms.intro)
13437
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   298
       apply (assumption | rule
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   299
	 Inter_separation Diff_separation cartprod_separation image_separation
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   300
	 converse_separation restrict_separation
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   301
	 comp_separation pred_separation Memrel_separation
13634
99a593b49b04 Re-organization of Constructible theories
paulson
parents: 13628
diff changeset
   302
	 funspace_succ_replacement is_recfun_separation)+
13428
99e52e78eb65 eliminate open locales and special ML code;
wenzelm
parents: 13385
diff changeset
   303
  done
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   304
13564
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
   305
theorem M_basic_L: "PROP M_basic(L)"
1500a2e48d44 renamed M_triv_axioms to M_trivial and M_axioms to M_basic
paulson
parents: 13505
diff changeset
   306
by (rule M_basic.intro [OF M_trivial_L M_basic_axioms_L])
13437
01b3fc0cc1b8 separate "axioms" proofs: more flexible for locale reasoning
paulson
parents: 13429
diff changeset
   307
15766
b08feb003f3c Cleaned up, now use interpretation.
ballarin
parents: 13807
diff changeset
   308
interpretation M_basic [L] by (rule M_basic_axioms_L)
13323
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   309
2c287f50c9f3 More relativization, reflection and proofs of separation
paulson
parents: 13319
diff changeset
   310
13306
6eebcddee32b more internalized formulas and separation proofs
paulson
parents:
diff changeset
   311
end