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