src/HOL/Wellfounded.thy
author haftmann
Thu, 23 Feb 2012 21:25:59 +0100
changeset 47506 cde737f9c911
parent 47184 48fcca8965f4
child 47509 fc315796794e
permissions -rw-r--r--
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
wenzelm@32962
     1
(*  Title:      HOL/Wellfounded.thy
wenzelm@32962
     2
    Author:     Tobias Nipkow
wenzelm@32962
     3
    Author:     Lawrence C Paulson
wenzelm@32962
     4
    Author:     Konrad Slind
wenzelm@32962
     5
    Author:     Alexander Krauss
krauss@26748
     6
*)
krauss@26748
     7
krauss@26748
     8
header {*Well-founded Recursion*}
krauss@26748
     9
krauss@26748
    10
theory Wellfounded
haftmann@35723
    11
imports Transitive_Closure
haftmann@31771
    12
uses ("Tools/Function/size.ML")
krauss@26748
    13
begin
krauss@26748
    14
krauss@26976
    15
subsection {* Basic Definitions *}
krauss@26976
    16
krauss@33217
    17
definition wf :: "('a * 'a) set => bool" where
haftmann@46008
    18
  "wf r \<longleftrightarrow> (!P. (!x. (!y. (y,x):r --> P(y)) --> P(x)) --> (!x. P(x)))"
krauss@26748
    19
krauss@33217
    20
definition wfP :: "('a => 'a => bool) => bool" where
haftmann@46008
    21
  "wfP r \<longleftrightarrow> wf {(x, y). r x y}"
krauss@26748
    22
krauss@26748
    23
lemma wfP_wf_eq [pred_set_conv]: "wfP (\<lambda>x y. (x, y) \<in> r) = wf r"
krauss@26748
    24
  by (simp add: wfP_def)
krauss@26748
    25
krauss@26748
    26
lemma wfUNIVI: 
krauss@26748
    27
   "(!!P x. (ALL x. (ALL y. (y,x) : r --> P(y)) --> P(x)) ==> P(x)) ==> wf(r)"
krauss@26748
    28
  unfolding wf_def by blast
krauss@26748
    29
krauss@26748
    30
lemmas wfPUNIVI = wfUNIVI [to_pred]
krauss@26748
    31
krauss@26748
    32
text{*Restriction to domain @{term A} and range @{term B}.  If @{term r} is
krauss@26748
    33
    well-founded over their intersection, then @{term "wf r"}*}
krauss@26748
    34
lemma wfI: 
krauss@26748
    35
 "[| r \<subseteq> A <*> B; 
krauss@26748
    36
     !!x P. [|\<forall>x. (\<forall>y. (y,x) : r --> P y) --> P x;  x : A; x : B |] ==> P x |]
krauss@26748
    37
  ==>  wf r"
krauss@26748
    38
  unfolding wf_def by blast
krauss@26748
    39
krauss@26748
    40
lemma wf_induct: 
krauss@26748
    41
    "[| wf(r);           
krauss@26748
    42
        !!x.[| ALL y. (y,x): r --> P(y) |] ==> P(x)  
krauss@26748
    43
     |]  ==>  P(a)"
krauss@26748
    44
  unfolding wf_def by blast
krauss@26748
    45
krauss@26748
    46
lemmas wfP_induct = wf_induct [to_pred]
krauss@26748
    47
krauss@26748
    48
lemmas wf_induct_rule = wf_induct [rule_format, consumes 1, case_names less, induct set: wf]
krauss@26748
    49
krauss@26748
    50
lemmas wfP_induct_rule = wf_induct_rule [to_pred, induct set: wfP]
krauss@26748
    51
krauss@26748
    52
lemma wf_not_sym: "wf r ==> (a, x) : r ==> (x, a) ~: r"
krauss@26748
    53
  by (induct a arbitrary: x set: wf) blast
krauss@26748
    54
krauss@33215
    55
lemma wf_asym:
krauss@33215
    56
  assumes "wf r" "(a, x) \<in> r"
krauss@33215
    57
  obtains "(x, a) \<notin> r"
krauss@33215
    58
  by (drule wf_not_sym[OF assms])
krauss@26748
    59
krauss@26748
    60
lemma wf_not_refl [simp]: "wf r ==> (a, a) ~: r"
krauss@26748
    61
  by (blast elim: wf_asym)
krauss@26748
    62
krauss@33215
    63
lemma wf_irrefl: assumes "wf r" obtains "(a, a) \<notin> r"
krauss@33215
    64
by (drule wf_not_refl[OF assms])
krauss@26748
    65
haftmann@27823
    66
lemma wf_wellorderI:
haftmann@27823
    67
  assumes wf: "wf {(x::'a::ord, y). x < y}"
haftmann@27823
    68
  assumes lin: "OFCLASS('a::ord, linorder_class)"
haftmann@27823
    69
  shows "OFCLASS('a::ord, wellorder_class)"
haftmann@27823
    70
using lin by (rule wellorder_class.intro)
haftmann@36623
    71
  (blast intro: class.wellorder_axioms.intro wf_induct_rule [OF wf])
haftmann@27823
    72
haftmann@27823
    73
lemma (in wellorder) wf:
haftmann@27823
    74
  "wf {(x, y). x < y}"
haftmann@27823
    75
unfolding wf_def by (blast intro: less_induct)
haftmann@27823
    76
haftmann@27823
    77
krauss@26976
    78
subsection {* Basic Results *}
krauss@26976
    79
krauss@33216
    80
text {* Point-free characterization of well-foundedness *}
krauss@33216
    81
krauss@33216
    82
lemma wfE_pf:
krauss@33216
    83
  assumes wf: "wf R"
krauss@33216
    84
  assumes a: "A \<subseteq> R `` A"
krauss@33216
    85
  shows "A = {}"
krauss@33216
    86
proof -
krauss@33216
    87
  { fix x
krauss@33216
    88
    from wf have "x \<notin> A"
krauss@33216
    89
    proof induct
krauss@33216
    90
      fix x assume "\<And>y. (y, x) \<in> R \<Longrightarrow> y \<notin> A"
krauss@33216
    91
      then have "x \<notin> R `` A" by blast
krauss@33216
    92
      with a show "x \<notin> A" by blast
krauss@33216
    93
    qed
krauss@33216
    94
  } thus ?thesis by auto
krauss@33216
    95
qed
krauss@33216
    96
krauss@33216
    97
lemma wfI_pf:
krauss@33216
    98
  assumes a: "\<And>A. A \<subseteq> R `` A \<Longrightarrow> A = {}"
krauss@33216
    99
  shows "wf R"
krauss@33216
   100
proof (rule wfUNIVI)
krauss@33216
   101
  fix P :: "'a \<Rightarrow> bool" and x
krauss@33216
   102
  let ?A = "{x. \<not> P x}"
krauss@33216
   103
  assume "\<forall>x. (\<forall>y. (y, x) \<in> R \<longrightarrow> P y) \<longrightarrow> P x"
krauss@33216
   104
  then have "?A \<subseteq> R `` ?A" by blast
krauss@33216
   105
  with a show "P x" by blast
krauss@33216
   106
qed
krauss@33216
   107
krauss@33216
   108
text{*Minimal-element characterization of well-foundedness*}
krauss@33216
   109
krauss@33216
   110
lemma wfE_min:
krauss@33216
   111
  assumes wf: "wf R" and Q: "x \<in> Q"
krauss@33216
   112
  obtains z where "z \<in> Q" "\<And>y. (y, z) \<in> R \<Longrightarrow> y \<notin> Q"
krauss@33216
   113
  using Q wfE_pf[OF wf, of Q] by blast
krauss@33216
   114
krauss@33216
   115
lemma wfI_min:
krauss@33216
   116
  assumes a: "\<And>x Q. x \<in> Q \<Longrightarrow> \<exists>z\<in>Q. \<forall>y. (y, z) \<in> R \<longrightarrow> y \<notin> Q"
krauss@33216
   117
  shows "wf R"
krauss@33216
   118
proof (rule wfI_pf)
krauss@33216
   119
  fix A assume b: "A \<subseteq> R `` A"
krauss@33216
   120
  { fix x assume "x \<in> A"
krauss@33216
   121
    from a[OF this] b have "False" by blast
krauss@33216
   122
  }
krauss@33216
   123
  thus "A = {}" by blast
krauss@33216
   124
qed
krauss@33216
   125
krauss@33216
   126
lemma wf_eq_minimal: "wf r = (\<forall>Q x. x\<in>Q --> (\<exists>z\<in>Q. \<forall>y. (y,z)\<in>r --> y\<notin>Q))"
krauss@33216
   127
apply auto
krauss@33216
   128
apply (erule wfE_min, assumption, blast)
krauss@33216
   129
apply (rule wfI_min, auto)
krauss@33216
   130
done
krauss@33216
   131
krauss@33216
   132
lemmas wfP_eq_minimal = wf_eq_minimal [to_pred]
krauss@33216
   133
krauss@33216
   134
text{* Well-foundedness of transitive closure *}
krauss@33216
   135
krauss@26748
   136
lemma wf_trancl:
krauss@26748
   137
  assumes "wf r"
krauss@26748
   138
  shows "wf (r^+)"
krauss@26748
   139
proof -
krauss@26748
   140
  {
krauss@26748
   141
    fix P and x
krauss@26748
   142
    assume induct_step: "!!x. (!!y. (y, x) : r^+ ==> P y) ==> P x"
krauss@26748
   143
    have "P x"
krauss@26748
   144
    proof (rule induct_step)
krauss@26748
   145
      fix y assume "(y, x) : r^+"
krauss@26748
   146
      with `wf r` show "P y"
krauss@26748
   147
      proof (induct x arbitrary: y)
wenzelm@32962
   148
        case (less x)
wenzelm@32962
   149
        note hyp = `\<And>x' y'. (x', x) : r ==> (y', x') : r^+ ==> P y'`
wenzelm@32962
   150
        from `(y, x) : r^+` show "P y"
wenzelm@32962
   151
        proof cases
wenzelm@32962
   152
          case base
wenzelm@32962
   153
          show "P y"
wenzelm@32962
   154
          proof (rule induct_step)
wenzelm@32962
   155
            fix y' assume "(y', y) : r^+"
wenzelm@32962
   156
            with `(y, x) : r` show "P y'" by (rule hyp [of y y'])
wenzelm@32962
   157
          qed
wenzelm@32962
   158
        next
wenzelm@32962
   159
          case step
wenzelm@32962
   160
          then obtain x' where "(x', x) : r" and "(y, x') : r^+" by simp
wenzelm@32962
   161
          then show "P y" by (rule hyp [of x' y])
wenzelm@32962
   162
        qed
krauss@26748
   163
      qed
krauss@26748
   164
    qed
krauss@26748
   165
  } then show ?thesis unfolding wf_def by blast
krauss@26748
   166
qed
krauss@26748
   167
krauss@26748
   168
lemmas wfP_trancl = wf_trancl [to_pred]
krauss@26748
   169
krauss@26748
   170
lemma wf_converse_trancl: "wf (r^-1) ==> wf ((r^+)^-1)"
krauss@26748
   171
  apply (subst trancl_converse [symmetric])
krauss@26748
   172
  apply (erule wf_trancl)
krauss@26748
   173
  done
krauss@26748
   174
krauss@33216
   175
text {* Well-foundedness of subsets *}
krauss@26748
   176
krauss@26748
   177
lemma wf_subset: "[| wf(r);  p<=r |] ==> wf(p)"
krauss@26748
   178
  apply (simp (no_asm_use) add: wf_eq_minimal)
krauss@26748
   179
  apply fast
krauss@26748
   180
  done
krauss@26748
   181
krauss@26748
   182
lemmas wfP_subset = wf_subset [to_pred]
krauss@26748
   183
krauss@26748
   184
text {* Well-foundedness of the empty relation *}
krauss@33216
   185
krauss@33216
   186
lemma wf_empty [iff]: "wf {}"
krauss@26748
   187
  by (simp add: wf_def)
krauss@26748
   188
haftmann@32199
   189
lemma wfP_empty [iff]:
haftmann@32199
   190
  "wfP (\<lambda>x y. False)"
haftmann@32199
   191
proof -
haftmann@32199
   192
  have "wfP bot" by (fact wf_empty [to_pred bot_empty_eq2])
huffman@45792
   193
  then show ?thesis by (simp add: bot_fun_def)
haftmann@32199
   194
qed
krauss@26748
   195
krauss@26748
   196
lemma wf_Int1: "wf r ==> wf (r Int r')"
krauss@26748
   197
  apply (erule wf_subset)
krauss@26748
   198
  apply (rule Int_lower1)
krauss@26748
   199
  done
krauss@26748
   200
krauss@26748
   201
lemma wf_Int2: "wf r ==> wf (r' Int r)"
krauss@26748
   202
  apply (erule wf_subset)
krauss@26748
   203
  apply (rule Int_lower2)
krauss@26748
   204
  done  
krauss@26748
   205
krauss@33216
   206
text {* Exponentiation *}
krauss@33216
   207
krauss@33216
   208
lemma wf_exp:
krauss@33216
   209
  assumes "wf (R ^^ n)"
krauss@33216
   210
  shows "wf R"
krauss@33216
   211
proof (rule wfI_pf)
krauss@33216
   212
  fix A assume "A \<subseteq> R `` A"
krauss@33216
   213
  then have "A \<subseteq> (R ^^ n) `` A" by (induct n) force+
krauss@33216
   214
  with `wf (R ^^ n)`
krauss@33216
   215
  show "A = {}" by (rule wfE_pf)
krauss@33216
   216
qed
krauss@33216
   217
krauss@33216
   218
text {* Well-foundedness of insert *}
krauss@33216
   219
krauss@26748
   220
lemma wf_insert [iff]: "wf(insert (y,x) r) = (wf(r) & (x,y) ~: r^*)"
krauss@26748
   221
apply (rule iffI)
krauss@26748
   222
 apply (blast elim: wf_trancl [THEN wf_irrefl]
krauss@26748
   223
              intro: rtrancl_into_trancl1 wf_subset 
krauss@26748
   224
                     rtrancl_mono [THEN [2] rev_subsetD])
krauss@26748
   225
apply (simp add: wf_eq_minimal, safe)
krauss@26748
   226
apply (rule allE, assumption, erule impE, blast) 
krauss@26748
   227
apply (erule bexE)
krauss@26748
   228
apply (rename_tac "a", case_tac "a = x")
krauss@26748
   229
 prefer 2
krauss@26748
   230
apply blast 
krauss@26748
   231
apply (case_tac "y:Q")
krauss@26748
   232
 prefer 2 apply blast
krauss@26748
   233
apply (rule_tac x = "{z. z:Q & (z,y) : r^*}" in allE)
krauss@26748
   234
 apply assumption
krauss@26748
   235
apply (erule_tac V = "ALL Q. (EX x. x : Q) --> ?P Q" in thin_rl) 
krauss@26748
   236
  --{*essential for speed*}
krauss@26748
   237
txt{*Blast with new substOccur fails*}
krauss@26748
   238
apply (fast intro: converse_rtrancl_into_rtrancl)
krauss@26748
   239
done
krauss@26748
   240
krauss@26748
   241
text{*Well-foundedness of image*}
krauss@33216
   242
haftmann@40855
   243
lemma wf_map_pair_image: "[| wf r; inj f |] ==> wf(map_pair f f ` r)"
krauss@26748
   244
apply (simp only: wf_eq_minimal, clarify)
krauss@26748
   245
apply (case_tac "EX p. f p : Q")
krauss@26748
   246
apply (erule_tac x = "{p. f p : Q}" in allE)
krauss@26748
   247
apply (fast dest: inj_onD, blast)
krauss@26748
   248
done
krauss@26748
   249
krauss@26748
   250
krauss@26976
   251
subsection {* Well-Foundedness Results for Unions *}
krauss@26748
   252
krauss@26748
   253
lemma wf_union_compatible:
krauss@26748
   254
  assumes "wf R" "wf S"
krauss@32231
   255
  assumes "R O S \<subseteq> R"
krauss@26748
   256
  shows "wf (R \<union> S)"
krauss@26748
   257
proof (rule wfI_min)
krauss@26748
   258
  fix x :: 'a and Q 
krauss@26748
   259
  let ?Q' = "{x \<in> Q. \<forall>y. (y, x) \<in> R \<longrightarrow> y \<notin> Q}"
krauss@26748
   260
  assume "x \<in> Q"
krauss@26748
   261
  obtain a where "a \<in> ?Q'"
krauss@26748
   262
    by (rule wfE_min [OF `wf R` `x \<in> Q`]) blast
krauss@26748
   263
  with `wf S`
krauss@26748
   264
  obtain z where "z \<in> ?Q'" and zmin: "\<And>y. (y, z) \<in> S \<Longrightarrow> y \<notin> ?Q'" by (erule wfE_min)
krauss@26748
   265
  { 
krauss@26748
   266
    fix y assume "(y, z) \<in> S"
krauss@26748
   267
    then have "y \<notin> ?Q'" by (rule zmin)
krauss@26748
   268
krauss@26748
   269
    have "y \<notin> Q"
krauss@26748
   270
    proof 
krauss@26748
   271
      assume "y \<in> Q"
krauss@26748
   272
      with `y \<notin> ?Q'` 
krauss@26748
   273
      obtain w where "(w, y) \<in> R" and "w \<in> Q" by auto
krauss@32231
   274
      from `(w, y) \<in> R` `(y, z) \<in> S` have "(w, z) \<in> R O S" by (rule rel_compI)
krauss@32231
   275
      with `R O S \<subseteq> R` have "(w, z) \<in> R" ..
krauss@26748
   276
      with `z \<in> ?Q'` have "w \<notin> Q" by blast 
krauss@26748
   277
      with `w \<in> Q` show False by contradiction
krauss@26748
   278
    qed
krauss@26748
   279
  }
krauss@26748
   280
  with `z \<in> ?Q'` show "\<exists>z\<in>Q. \<forall>y. (y, z) \<in> R \<union> S \<longrightarrow> y \<notin> Q" by blast
krauss@26748
   281
qed
krauss@26748
   282
krauss@26748
   283
krauss@26748
   284
text {* Well-foundedness of indexed union with disjoint domains and ranges *}
krauss@26748
   285
krauss@26748
   286
lemma wf_UN: "[| ALL i:I. wf(r i);  
krauss@26748
   287
         ALL i:I. ALL j:I. r i ~= r j --> Domain(r i) Int Range(r j) = {}  
krauss@26748
   288
      |] ==> wf(UN i:I. r i)"
krauss@26748
   289
apply (simp only: wf_eq_minimal, clarify)
krauss@26748
   290
apply (rename_tac A a, case_tac "EX i:I. EX a:A. EX b:A. (b,a) : r i")
krauss@26748
   291
 prefer 2
krauss@26748
   292
 apply force 
krauss@26748
   293
apply clarify
krauss@26748
   294
apply (drule bspec, assumption)  
krauss@26748
   295
apply (erule_tac x="{a. a:A & (EX b:A. (b,a) : r i) }" in allE)
krauss@26748
   296
apply (blast elim!: allE)  
krauss@26748
   297
done
krauss@26748
   298
haftmann@32246
   299
lemma wfP_SUP:
haftmann@32246
   300
  "\<forall>i. wfP (r i) \<Longrightarrow> \<forall>i j. r i \<noteq> r j \<longrightarrow> inf (DomainP (r i)) (RangeP (r j)) = bot \<Longrightarrow> wfP (SUPR UNIV r)"
berghofe@47048
   301
  apply (rule wf_UN [where I=UNIV and r="\<lambda>i. {(x, y). r i x y}", to_pred])
haftmann@46841
   302
  apply (simp_all add: inf_set_def)
haftmann@46841
   303
  apply auto
haftmann@46841
   304
  done
krauss@26748
   305
krauss@26748
   306
lemma wf_Union: 
krauss@26748
   307
 "[| ALL r:R. wf r;  
krauss@26748
   308
     ALL r:R. ALL s:R. r ~= s --> Domain r Int Range s = {}  
krauss@26748
   309
  |] ==> wf(Union R)"
hoelzl@45808
   310
  using wf_UN[of R "\<lambda>i. i"] by (simp add: SUP_def)
krauss@26748
   311
krauss@26748
   312
(*Intuition: we find an (R u S)-min element of a nonempty subset A
krauss@26748
   313
             by case distinction.
krauss@26748
   314
  1. There is a step a -R-> b with a,b : A.
krauss@26748
   315
     Pick an R-min element z of the (nonempty) set {a:A | EX b:A. a -R-> b}.
krauss@26748
   316
     By definition, there is z':A s.t. z -R-> z'. Because z is R-min in the
krauss@26748
   317
     subset, z' must be R-min in A. Because z' has an R-predecessor, it cannot
krauss@26748
   318
     have an S-successor and is thus S-min in A as well.
krauss@26748
   319
  2. There is no such step.
krauss@26748
   320
     Pick an S-min element of A. In this case it must be an R-min
krauss@26748
   321
     element of A as well.
krauss@26748
   322
krauss@26748
   323
*)
krauss@26748
   324
lemma wf_Un:
krauss@26748
   325
     "[| wf r; wf s; Domain r Int Range s = {} |] ==> wf(r Un s)"
krauss@26748
   326
  using wf_union_compatible[of s r] 
krauss@26748
   327
  by (auto simp: Un_ac)
krauss@26748
   328
krauss@26748
   329
lemma wf_union_merge: 
krauss@32231
   330
  "wf (R \<union> S) = wf (R O R \<union> S O R \<union> S)" (is "wf ?A = wf ?B")
krauss@26748
   331
proof
krauss@26748
   332
  assume "wf ?A"
krauss@26748
   333
  with wf_trancl have wfT: "wf (?A^+)" .
krauss@26748
   334
  moreover have "?B \<subseteq> ?A^+"
krauss@26748
   335
    by (subst trancl_unfold, subst trancl_unfold) blast
krauss@26748
   336
  ultimately show "wf ?B" by (rule wf_subset)
krauss@26748
   337
next
krauss@26748
   338
  assume "wf ?B"
krauss@26748
   339
krauss@26748
   340
  show "wf ?A"
krauss@26748
   341
  proof (rule wfI_min)
krauss@26748
   342
    fix Q :: "'a set" and x 
krauss@26748
   343
    assume "x \<in> Q"
krauss@26748
   344
krauss@26748
   345
    with `wf ?B`
krauss@26748
   346
    obtain z where "z \<in> Q" and "\<And>y. (y, z) \<in> ?B \<Longrightarrow> y \<notin> Q" 
krauss@26748
   347
      by (erule wfE_min)
krauss@26748
   348
    then have A1: "\<And>y. (y, z) \<in> R O R \<Longrightarrow> y \<notin> Q"
krauss@32231
   349
      and A2: "\<And>y. (y, z) \<in> S O R \<Longrightarrow> y \<notin> Q"
krauss@26748
   350
      and A3: "\<And>y. (y, z) \<in> S \<Longrightarrow> y \<notin> Q"
krauss@26748
   351
      by auto
krauss@26748
   352
    
krauss@26748
   353
    show "\<exists>z\<in>Q. \<forall>y. (y, z) \<in> ?A \<longrightarrow> y \<notin> Q"
krauss@26748
   354
    proof (cases "\<forall>y. (y, z) \<in> R \<longrightarrow> y \<notin> Q")
krauss@26748
   355
      case True
krauss@26748
   356
      with `z \<in> Q` A3 show ?thesis by blast
krauss@26748
   357
    next
krauss@26748
   358
      case False 
krauss@26748
   359
      then obtain z' where "z'\<in>Q" "(z', z) \<in> R" by blast
krauss@26748
   360
krauss@26748
   361
      have "\<forall>y. (y, z') \<in> ?A \<longrightarrow> y \<notin> Q"
krauss@26748
   362
      proof (intro allI impI)
krauss@26748
   363
        fix y assume "(y, z') \<in> ?A"
krauss@26748
   364
        then show "y \<notin> Q"
krauss@26748
   365
        proof
krauss@26748
   366
          assume "(y, z') \<in> R" 
krauss@26748
   367
          then have "(y, z) \<in> R O R" using `(z', z) \<in> R` ..
krauss@26748
   368
          with A1 show "y \<notin> Q" .
krauss@26748
   369
        next
krauss@26748
   370
          assume "(y, z') \<in> S" 
krauss@32231
   371
          then have "(y, z) \<in> S O R" using  `(z', z) \<in> R` ..
krauss@26748
   372
          with A2 show "y \<notin> Q" .
krauss@26748
   373
        qed
krauss@26748
   374
      qed
krauss@26748
   375
      with `z' \<in> Q` show ?thesis ..
krauss@26748
   376
    qed
krauss@26748
   377
  qed
krauss@26748
   378
qed
krauss@26748
   379
krauss@26748
   380
lemma wf_comp_self: "wf R = wf (R O R)"  -- {* special case *}
krauss@26748
   381
  by (rule wf_union_merge [where S = "{}", simplified])
krauss@26748
   382
krauss@26748
   383
krauss@33217
   384
subsection {* Acyclic relations *}
krauss@33217
   385
krauss@26748
   386
lemma wf_acyclic: "wf r ==> acyclic r"
krauss@26748
   387
apply (simp add: acyclic_def)
krauss@26748
   388
apply (blast elim: wf_trancl [THEN wf_irrefl])
krauss@26748
   389
done
krauss@26748
   390
krauss@26748
   391
lemmas wfP_acyclicP = wf_acyclic [to_pred]
krauss@26748
   392
krauss@26748
   393
text{* Wellfoundedness of finite acyclic relations*}
krauss@26748
   394
krauss@26748
   395
lemma finite_acyclic_wf [rule_format]: "finite r ==> acyclic r --> wf r"
krauss@26748
   396
apply (erule finite_induct, blast)
krauss@26748
   397
apply (simp (no_asm_simp) only: split_tupled_all)
krauss@26748
   398
apply simp
krauss@26748
   399
done
krauss@26748
   400
krauss@26748
   401
lemma finite_acyclic_wf_converse: "[|finite r; acyclic r|] ==> wf (r^-1)"
krauss@26748
   402
apply (erule finite_converse [THEN iffD2, THEN finite_acyclic_wf])
krauss@26748
   403
apply (erule acyclic_converse [THEN iffD2])
krauss@26748
   404
done
krauss@26748
   405
krauss@26748
   406
lemma wf_iff_acyclic_if_finite: "finite r ==> wf r = acyclic r"
krauss@26748
   407
by (blast intro: finite_acyclic_wf wf_acyclic)
krauss@26748
   408
krauss@26748
   409
krauss@26748
   410
subsection {* @{typ nat} is well-founded *}
krauss@26748
   411
krauss@26748
   412
lemma less_nat_rel: "op < = (\<lambda>m n. n = Suc m)^++"
krauss@26748
   413
proof (rule ext, rule ext, rule iffI)
krauss@26748
   414
  fix n m :: nat
krauss@26748
   415
  assume "m < n"
krauss@26748
   416
  then show "(\<lambda>m n. n = Suc m)^++ m n"
krauss@26748
   417
  proof (induct n)
krauss@26748
   418
    case 0 then show ?case by auto
krauss@26748
   419
  next
krauss@26748
   420
    case (Suc n) then show ?case
krauss@26748
   421
      by (auto simp add: less_Suc_eq_le le_less intro: tranclp.trancl_into_trancl)
krauss@26748
   422
  qed
krauss@26748
   423
next
krauss@26748
   424
  fix n m :: nat
krauss@26748
   425
  assume "(\<lambda>m n. n = Suc m)^++ m n"
krauss@26748
   426
  then show "m < n"
krauss@26748
   427
    by (induct n)
krauss@26748
   428
      (simp_all add: less_Suc_eq_le reflexive le_less)
krauss@26748
   429
qed
krauss@26748
   430
krauss@26748
   431
definition
krauss@26748
   432
  pred_nat :: "(nat * nat) set" where
krauss@26748
   433
  "pred_nat = {(m, n). n = Suc m}"
krauss@26748
   434
krauss@26748
   435
definition
krauss@26748
   436
  less_than :: "(nat * nat) set" where
krauss@26748
   437
  "less_than = pred_nat^+"
krauss@26748
   438
krauss@26748
   439
lemma less_eq: "(m, n) \<in> pred_nat^+ \<longleftrightarrow> m < n"
krauss@26748
   440
  unfolding less_nat_rel pred_nat_def trancl_def by simp
krauss@26748
   441
krauss@26748
   442
lemma pred_nat_trancl_eq_le:
krauss@26748
   443
  "(m, n) \<in> pred_nat^* \<longleftrightarrow> m \<le> n"
krauss@26748
   444
  unfolding less_eq rtrancl_eq_or_trancl by auto
krauss@26748
   445
krauss@26748
   446
lemma wf_pred_nat: "wf pred_nat"
krauss@26748
   447
  apply (unfold wf_def pred_nat_def, clarify)
krauss@26748
   448
  apply (induct_tac x, blast+)
krauss@26748
   449
  done
krauss@26748
   450
krauss@26748
   451
lemma wf_less_than [iff]: "wf less_than"
krauss@26748
   452
  by (simp add: less_than_def wf_pred_nat [THEN wf_trancl])
krauss@26748
   453
krauss@26748
   454
lemma trans_less_than [iff]: "trans less_than"
huffman@35208
   455
  by (simp add: less_than_def)
krauss@26748
   456
krauss@26748
   457
lemma less_than_iff [iff]: "((x,y): less_than) = (x<y)"
krauss@26748
   458
  by (simp add: less_than_def less_eq)
krauss@26748
   459
krauss@26748
   460
lemma wf_less: "wf {(x, y::nat). x < y}"
krauss@26748
   461
  using wf_less_than by (simp add: less_than_def less_eq [symmetric])
krauss@26748
   462
krauss@26748
   463
krauss@26748
   464
subsection {* Accessible Part *}
krauss@26748
   465
krauss@26748
   466
text {*
krauss@26748
   467
 Inductive definition of the accessible part @{term "acc r"} of a
krauss@26748
   468
 relation; see also \cite{paulin-tlca}.
krauss@26748
   469
*}
krauss@26748
   470
krauss@26748
   471
inductive_set
krauss@26748
   472
  acc :: "('a * 'a) set => 'a set"
krauss@26748
   473
  for r :: "('a * 'a) set"
krauss@26748
   474
  where
krauss@26748
   475
    accI: "(!!y. (y, x) : r ==> y : acc r) ==> x : acc r"
krauss@26748
   476
krauss@26748
   477
abbreviation
krauss@26748
   478
  termip :: "('a => 'a => bool) => 'a => bool" where
haftmann@46008
   479
  "termip r \<equiv> accp (r\<inverse>\<inverse>)"
krauss@26748
   480
krauss@26748
   481
abbreviation
krauss@26748
   482
  termi :: "('a * 'a) set => 'a set" where
haftmann@46008
   483
  "termi r \<equiv> acc (r\<inverse>)"
krauss@26748
   484
krauss@26748
   485
lemmas accpI = accp.accI
krauss@26748
   486
krauss@26748
   487
text {* Induction rules *}
krauss@26748
   488
krauss@26748
   489
theorem accp_induct:
krauss@26748
   490
  assumes major: "accp r a"
krauss@26748
   491
  assumes hyp: "!!x. accp r x ==> \<forall>y. r y x --> P y ==> P x"
krauss@26748
   492
  shows "P a"
krauss@26748
   493
  apply (rule major [THEN accp.induct])
krauss@26748
   494
  apply (rule hyp)
krauss@26748
   495
   apply (rule accp.accI)
krauss@26748
   496
   apply fast
krauss@26748
   497
  apply fast
krauss@26748
   498
  done
krauss@26748
   499
krauss@26748
   500
theorems accp_induct_rule = accp_induct [rule_format, induct set: accp]
krauss@26748
   501
krauss@26748
   502
theorem accp_downward: "accp r b ==> r a b ==> accp r a"
krauss@26748
   503
  apply (erule accp.cases)
krauss@26748
   504
  apply fast
krauss@26748
   505
  done
krauss@26748
   506
krauss@26748
   507
lemma not_accp_down:
krauss@26748
   508
  assumes na: "\<not> accp R x"
krauss@26748
   509
  obtains z where "R z x" and "\<not> accp R z"
krauss@26748
   510
proof -
krauss@26748
   511
  assume a: "\<And>z. \<lbrakk>R z x; \<not> accp R z\<rbrakk> \<Longrightarrow> thesis"
krauss@26748
   512
krauss@26748
   513
  show thesis
krauss@26748
   514
  proof (cases "\<forall>z. R z x \<longrightarrow> accp R z")
krauss@26748
   515
    case True
krauss@26748
   516
    hence "\<And>z. R z x \<Longrightarrow> accp R z" by auto
krauss@26748
   517
    hence "accp R x"
krauss@26748
   518
      by (rule accp.accI)
krauss@26748
   519
    with na show thesis ..
krauss@26748
   520
  next
krauss@26748
   521
    case False then obtain z where "R z x" and "\<not> accp R z"
krauss@26748
   522
      by auto
krauss@26748
   523
    with a show thesis .
krauss@26748
   524
  qed
krauss@26748
   525
qed
krauss@26748
   526
krauss@26748
   527
lemma accp_downwards_aux: "r\<^sup>*\<^sup>* b a ==> accp r a --> accp r b"
krauss@26748
   528
  apply (erule rtranclp_induct)
krauss@26748
   529
   apply blast
krauss@26748
   530
  apply (blast dest: accp_downward)
krauss@26748
   531
  done
krauss@26748
   532
krauss@26748
   533
theorem accp_downwards: "accp r a ==> r\<^sup>*\<^sup>* b a ==> accp r b"
krauss@26748
   534
  apply (blast dest: accp_downwards_aux)
krauss@26748
   535
  done
krauss@26748
   536
krauss@26748
   537
theorem accp_wfPI: "\<forall>x. accp r x ==> wfP r"
krauss@26748
   538
  apply (rule wfPUNIVI)
huffman@45792
   539
  apply (rule_tac P=P in accp_induct)
krauss@26748
   540
   apply blast
krauss@26748
   541
  apply blast
krauss@26748
   542
  done
krauss@26748
   543
krauss@26748
   544
theorem accp_wfPD: "wfP r ==> accp r x"
krauss@26748
   545
  apply (erule wfP_induct_rule)
krauss@26748
   546
  apply (rule accp.accI)
krauss@26748
   547
  apply blast
krauss@26748
   548
  done
krauss@26748
   549
krauss@26748
   550
theorem wfP_accp_iff: "wfP r = (\<forall>x. accp r x)"
krauss@26748
   551
  apply (blast intro: accp_wfPI dest: accp_wfPD)
krauss@26748
   552
  done
krauss@26748
   553
krauss@26748
   554
krauss@26748
   555
text {* Smaller relations have bigger accessible parts: *}
krauss@26748
   556
krauss@26748
   557
lemma accp_subset:
krauss@26748
   558
  assumes sub: "R1 \<le> R2"
krauss@26748
   559
  shows "accp R2 \<le> accp R1"
berghofe@26803
   560
proof (rule predicate1I)
krauss@26748
   561
  fix x assume "accp R2 x"
krauss@26748
   562
  then show "accp R1 x"
krauss@26748
   563
  proof (induct x)
krauss@26748
   564
    fix x
krauss@26748
   565
    assume ih: "\<And>y. R2 y x \<Longrightarrow> accp R1 y"
krauss@26748
   566
    with sub show "accp R1 x"
krauss@26748
   567
      by (blast intro: accp.accI)
krauss@26748
   568
  qed
krauss@26748
   569
qed
krauss@26748
   570
krauss@26748
   571
krauss@26748
   572
text {* This is a generalized induction theorem that works on
krauss@26748
   573
  subsets of the accessible part. *}
krauss@26748
   574
krauss@26748
   575
lemma accp_subset_induct:
krauss@26748
   576
  assumes subset: "D \<le> accp R"
krauss@26748
   577
    and dcl: "\<And>x z. \<lbrakk>D x; R z x\<rbrakk> \<Longrightarrow> D z"
krauss@26748
   578
    and "D x"
krauss@26748
   579
    and istep: "\<And>x. \<lbrakk>D x; (\<And>z. R z x \<Longrightarrow> P z)\<rbrakk> \<Longrightarrow> P x"
krauss@26748
   580
  shows "P x"
krauss@26748
   581
proof -
krauss@26748
   582
  from subset and `D x`
krauss@26748
   583
  have "accp R x" ..
krauss@26748
   584
  then show "P x" using `D x`
krauss@26748
   585
  proof (induct x)
krauss@26748
   586
    fix x
krauss@26748
   587
    assume "D x"
krauss@26748
   588
      and "\<And>y. R y x \<Longrightarrow> D y \<Longrightarrow> P y"
krauss@26748
   589
    with dcl and istep show "P x" by blast
krauss@26748
   590
  qed
krauss@26748
   591
qed
krauss@26748
   592
krauss@26748
   593
krauss@26748
   594
text {* Set versions of the above theorems *}
krauss@26748
   595
krauss@26748
   596
lemmas acc_induct = accp_induct [to_set]
krauss@26748
   597
krauss@26748
   598
lemmas acc_induct_rule = acc_induct [rule_format, induct set: acc]
krauss@26748
   599
krauss@26748
   600
lemmas acc_downward = accp_downward [to_set]
krauss@26748
   601
krauss@26748
   602
lemmas not_acc_down = not_accp_down [to_set]
krauss@26748
   603
krauss@26748
   604
lemmas acc_downwards_aux = accp_downwards_aux [to_set]
krauss@26748
   605
krauss@26748
   606
lemmas acc_downwards = accp_downwards [to_set]
krauss@26748
   607
krauss@26748
   608
lemmas acc_wfI = accp_wfPI [to_set]
krauss@26748
   609
krauss@26748
   610
lemmas acc_wfD = accp_wfPD [to_set]
krauss@26748
   611
krauss@26748
   612
lemmas wf_acc_iff = wfP_accp_iff [to_set]
krauss@26748
   613
berghofe@47048
   614
lemmas acc_subset = accp_subset [to_set]
krauss@26748
   615
berghofe@47048
   616
lemmas acc_subset_induct = accp_subset_induct [to_set]
krauss@26748
   617
krauss@26748
   618
krauss@26748
   619
subsection {* Tools for building wellfounded relations *}
krauss@26748
   620
krauss@26748
   621
text {* Inverse Image *}
krauss@26748
   622
krauss@26748
   623
lemma wf_inv_image [simp,intro!]: "wf(r) ==> wf(inv_image r (f::'a=>'b))"
krauss@26748
   624
apply (simp (no_asm_use) add: inv_image_def wf_eq_minimal)
krauss@26748
   625
apply clarify
krauss@26748
   626
apply (subgoal_tac "EX (w::'b) . w : {w. EX (x::'a) . x: Q & (f x = w) }")
krauss@26748
   627
prefer 2 apply (blast del: allE)
krauss@26748
   628
apply (erule allE)
krauss@26748
   629
apply (erule (1) notE impE)
krauss@26748
   630
apply blast
krauss@26748
   631
done
krauss@26748
   632
krauss@36664
   633
text {* Measure functions into @{typ nat} *}
krauss@26748
   634
krauss@26748
   635
definition measure :: "('a => nat) => ('a * 'a)set"
haftmann@46008
   636
where "measure = inv_image less_than"
krauss@26748
   637
bulwahn@47184
   638
lemma in_measure[simp, code_unfold]: "((x,y) : measure f) = (f x < f y)"
krauss@26748
   639
  by (simp add:measure_def)
krauss@26748
   640
krauss@26748
   641
lemma wf_measure [iff]: "wf (measure f)"
krauss@26748
   642
apply (unfold measure_def)
krauss@26748
   643
apply (rule wf_less_than [THEN wf_inv_image])
krauss@26748
   644
done
krauss@26748
   645
nipkow@42584
   646
lemma wf_if_measure: fixes f :: "'a \<Rightarrow> nat"
nipkow@42584
   647
shows "(!!x. P x \<Longrightarrow> f(g x) < f x) \<Longrightarrow> wf {(y,x). P x \<and> y = g x}"
nipkow@42584
   648
apply(insert wf_measure[of f])
nipkow@42584
   649
apply(simp only: measure_def inv_image_def less_than_def less_eq)
nipkow@42584
   650
apply(erule wf_subset)
nipkow@42584
   651
apply auto
nipkow@42584
   652
done
nipkow@42584
   653
nipkow@42584
   654
krauss@26748
   655
text{* Lexicographic combinations *}
krauss@26748
   656
haftmann@37767
   657
definition lex_prod :: "('a \<times>'a) set \<Rightarrow> ('b \<times> 'b) set \<Rightarrow> (('a \<times> 'b) \<times> ('a \<times> 'b)) set" (infixr "<*lex*>" 80) where
haftmann@37767
   658
  "ra <*lex*> rb = {((a, b), (a', b')). (a, a') \<in> ra \<or> a = a' \<and> (b, b') \<in> rb}"
krauss@26748
   659
krauss@26748
   660
lemma wf_lex_prod [intro!]: "[| wf(ra); wf(rb) |] ==> wf(ra <*lex*> rb)"
krauss@26748
   661
apply (unfold wf_def lex_prod_def) 
krauss@26748
   662
apply (rule allI, rule impI)
krauss@26748
   663
apply (simp (no_asm_use) only: split_paired_All)
krauss@26748
   664
apply (drule spec, erule mp) 
krauss@26748
   665
apply (rule allI, rule impI)
krauss@26748
   666
apply (drule spec, erule mp, blast) 
krauss@26748
   667
done
krauss@26748
   668
krauss@26748
   669
lemma in_lex_prod[simp]: 
krauss@26748
   670
  "(((a,b),(a',b')): r <*lex*> s) = ((a,a'): r \<or> (a = a' \<and> (b, b') : s))"
krauss@26748
   671
  by (auto simp:lex_prod_def)
krauss@26748
   672
krauss@26748
   673
text{* @{term "op <*lex*>"} preserves transitivity *}
krauss@26748
   674
krauss@26748
   675
lemma trans_lex_prod [intro!]: 
krauss@26748
   676
    "[| trans R1; trans R2 |] ==> trans (R1 <*lex*> R2)"
krauss@26748
   677
by (unfold trans_def lex_prod_def, blast) 
krauss@26748
   678
krauss@36664
   679
text {* lexicographic combinations with measure functions *}
krauss@26748
   680
krauss@26748
   681
definition 
krauss@26748
   682
  mlex_prod :: "('a \<Rightarrow> nat) \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" (infixr "<*mlex*>" 80)
krauss@26748
   683
where
krauss@26748
   684
  "f <*mlex*> R = inv_image (less_than <*lex*> R) (%x. (f x, x))"
krauss@26748
   685
krauss@26748
   686
lemma wf_mlex: "wf R \<Longrightarrow> wf (f <*mlex*> R)"
krauss@26748
   687
unfolding mlex_prod_def
krauss@26748
   688
by auto
krauss@26748
   689
krauss@26748
   690
lemma mlex_less: "f x < f y \<Longrightarrow> (x, y) \<in> f <*mlex*> R"
krauss@26748
   691
unfolding mlex_prod_def by simp
krauss@26748
   692
krauss@26748
   693
lemma mlex_leq: "f x \<le> f y \<Longrightarrow> (x, y) \<in> R \<Longrightarrow> (x, y) \<in> f <*mlex*> R"
krauss@26748
   694
unfolding mlex_prod_def by auto
krauss@26748
   695
krauss@26748
   696
text {* proper subset relation on finite sets *}
krauss@26748
   697
krauss@26748
   698
definition finite_psubset  :: "('a set * 'a set) set"
haftmann@46008
   699
where "finite_psubset = {(A,B). A < B & finite B}"
krauss@26748
   700
krauss@28260
   701
lemma wf_finite_psubset[simp]: "wf(finite_psubset)"
krauss@26748
   702
apply (unfold finite_psubset_def)
krauss@26748
   703
apply (rule wf_measure [THEN wf_subset])
krauss@26748
   704
apply (simp add: measure_def inv_image_def less_than_def less_eq)
krauss@26748
   705
apply (fast elim!: psubset_card_mono)
krauss@26748
   706
done
krauss@26748
   707
krauss@26748
   708
lemma trans_finite_psubset: "trans finite_psubset"
berghofe@26803
   709
by (simp add: finite_psubset_def less_le trans_def, blast)
krauss@26748
   710
krauss@28260
   711
lemma in_finite_psubset[simp]: "(A, B) \<in> finite_psubset = (A < B & finite B)"
krauss@28260
   712
unfolding finite_psubset_def by auto
krauss@26748
   713
krauss@28735
   714
text {* max- and min-extension of order to finite sets *}
krauss@28735
   715
krauss@28735
   716
inductive_set max_ext :: "('a \<times> 'a) set \<Rightarrow> ('a set \<times> 'a set) set" 
krauss@28735
   717
for R :: "('a \<times> 'a) set"
krauss@28735
   718
where
krauss@28735
   719
  max_extI[intro]: "finite X \<Longrightarrow> finite Y \<Longrightarrow> Y \<noteq> {} \<Longrightarrow> (\<And>x. x \<in> X \<Longrightarrow> \<exists>y\<in>Y. (x, y) \<in> R) \<Longrightarrow> (X, Y) \<in> max_ext R"
krauss@28735
   720
krauss@28735
   721
lemma max_ext_wf:
krauss@28735
   722
  assumes wf: "wf r"
krauss@28735
   723
  shows "wf (max_ext r)"
krauss@28735
   724
proof (rule acc_wfI, intro allI)
krauss@28735
   725
  fix M show "M \<in> acc (max_ext r)" (is "_ \<in> ?W")
krauss@28735
   726
  proof cases
krauss@28735
   727
    assume "finite M"
krauss@28735
   728
    thus ?thesis
krauss@28735
   729
    proof (induct M)
krauss@28735
   730
      show "{} \<in> ?W"
krauss@28735
   731
        by (rule accI) (auto elim: max_ext.cases)
krauss@28735
   732
    next
krauss@28735
   733
      fix M a assume "M \<in> ?W" "finite M"
krauss@28735
   734
      with wf show "insert a M \<in> ?W"
krauss@28735
   735
      proof (induct arbitrary: M)
krauss@28735
   736
        fix M a
krauss@28735
   737
        assume "M \<in> ?W"  and  [intro]: "finite M"
krauss@28735
   738
        assume hyp: "\<And>b M. (b, a) \<in> r \<Longrightarrow> M \<in> ?W \<Longrightarrow> finite M \<Longrightarrow> insert b M \<in> ?W"
krauss@28735
   739
        {
krauss@28735
   740
          fix N M :: "'a set"
krauss@28735
   741
          assume "finite N" "finite M"
krauss@28735
   742
          then
krauss@28735
   743
          have "\<lbrakk>M \<in> ?W ; (\<And>y. y \<in> N \<Longrightarrow> (y, a) \<in> r)\<rbrakk> \<Longrightarrow>  N \<union> M \<in> ?W"
krauss@28735
   744
            by (induct N arbitrary: M) (auto simp: hyp)
krauss@28735
   745
        }
krauss@28735
   746
        note add_less = this
krauss@28735
   747
        
krauss@28735
   748
        show "insert a M \<in> ?W"
krauss@28735
   749
        proof (rule accI)
krauss@28735
   750
          fix N assume Nless: "(N, insert a M) \<in> max_ext r"
krauss@28735
   751
          hence asm1: "\<And>x. x \<in> N \<Longrightarrow> (x, a) \<in> r \<or> (\<exists>y \<in> M. (x, y) \<in> r)"
krauss@28735
   752
            by (auto elim!: max_ext.cases)
krauss@28735
   753
krauss@28735
   754
          let ?N1 = "{ n \<in> N. (n, a) \<in> r }"
krauss@28735
   755
          let ?N2 = "{ n \<in> N. (n, a) \<notin> r }"
nipkow@39535
   756
          have N: "?N1 \<union> ?N2 = N" by (rule set_eqI) auto
krauss@28735
   757
          from Nless have "finite N" by (auto elim: max_ext.cases)
krauss@28735
   758
          then have finites: "finite ?N1" "finite ?N2" by auto
krauss@28735
   759
          
krauss@28735
   760
          have "?N2 \<in> ?W"
krauss@28735
   761
          proof cases
krauss@28735
   762
            assume [simp]: "M = {}"
krauss@28735
   763
            have Mw: "{} \<in> ?W" by (rule accI) (auto elim: max_ext.cases)
krauss@28735
   764
krauss@28735
   765
            from asm1 have "?N2 = {}" by auto
krauss@28735
   766
            with Mw show "?N2 \<in> ?W" by (simp only:)
krauss@28735
   767
          next
krauss@28735
   768
            assume "M \<noteq> {}"
krauss@28735
   769
            have N2: "(?N2, M) \<in> max_ext r" 
krauss@28735
   770
              by (rule max_extI[OF _ _ `M \<noteq> {}`]) (insert asm1, auto intro: finites)
krauss@28735
   771
            
krauss@28735
   772
            with `M \<in> ?W` show "?N2 \<in> ?W" by (rule acc_downward)
krauss@28735
   773
          qed
krauss@28735
   774
          with finites have "?N1 \<union> ?N2 \<in> ?W" 
krauss@28735
   775
            by (rule add_less) simp
krauss@28735
   776
          then show "N \<in> ?W" by (simp only: N)
krauss@28735
   777
        qed
krauss@28735
   778
      qed
krauss@28735
   779
    qed
krauss@28735
   780
  next
krauss@28735
   781
    assume [simp]: "\<not> finite M"
krauss@28735
   782
    show ?thesis
krauss@28735
   783
      by (rule accI) (auto elim: max_ext.cases)
krauss@28735
   784
  qed
krauss@28735
   785
qed
krauss@28735
   786
krauss@29118
   787
lemma max_ext_additive: 
krauss@29118
   788
 "(A, B) \<in> max_ext R \<Longrightarrow> (C, D) \<in> max_ext R \<Longrightarrow>
krauss@29118
   789
  (A \<union> C, B \<union> D) \<in> max_ext R"
krauss@29118
   790
by (force elim!: max_ext.cases)
krauss@29118
   791
krauss@28735
   792
haftmann@37767
   793
definition min_ext :: "('a \<times> 'a) set \<Rightarrow> ('a set \<times> 'a set) set"  where
haftmann@37767
   794
  "min_ext r = {(X, Y) | X Y. X \<noteq> {} \<and> (\<forall>y \<in> Y. (\<exists>x \<in> X. (x, y) \<in> r))}"
krauss@28735
   795
krauss@28735
   796
lemma min_ext_wf:
krauss@28735
   797
  assumes "wf r"
krauss@28735
   798
  shows "wf (min_ext r)"
krauss@28735
   799
proof (rule wfI_min)
krauss@28735
   800
  fix Q :: "'a set set"
krauss@28735
   801
  fix x
krauss@28735
   802
  assume nonempty: "x \<in> Q"
krauss@28735
   803
  show "\<exists>m \<in> Q. (\<forall> n. (n, m) \<in> min_ext r \<longrightarrow> n \<notin> Q)"
krauss@28735
   804
  proof cases
krauss@28735
   805
    assume "Q = {{}}" thus ?thesis by (simp add: min_ext_def)
krauss@28735
   806
  next
krauss@28735
   807
    assume "Q \<noteq> {{}}"
krauss@28735
   808
    with nonempty
krauss@28735
   809
    obtain e x where "x \<in> Q" "e \<in> x" by force
krauss@28735
   810
    then have eU: "e \<in> \<Union>Q" by auto
krauss@28735
   811
    with `wf r` 
krauss@28735
   812
    obtain z where z: "z \<in> \<Union>Q" "\<And>y. (y, z) \<in> r \<Longrightarrow> y \<notin> \<Union>Q" 
krauss@28735
   813
      by (erule wfE_min)
krauss@28735
   814
    from z obtain m where "m \<in> Q" "z \<in> m" by auto
krauss@28735
   815
    from `m \<in> Q`
krauss@28735
   816
    show ?thesis
krauss@28735
   817
    proof (rule, intro bexI allI impI)
krauss@28735
   818
      fix n
krauss@28735
   819
      assume smaller: "(n, m) \<in> min_ext r"
krauss@28735
   820
      with `z \<in> m` obtain y where y: "y \<in> n" "(y, z) \<in> r" by (auto simp: min_ext_def)
krauss@28735
   821
      then show "n \<notin> Q" using z(2) by auto
krauss@28735
   822
    qed      
krauss@28735
   823
  qed
krauss@28735
   824
qed
krauss@26748
   825
nipkow@43978
   826
text{* Bounded increase must terminate: *}
nipkow@43978
   827
nipkow@43978
   828
lemma wf_bounded_measure:
nipkow@43978
   829
fixes ub :: "'a \<Rightarrow> nat" and f :: "'a \<Rightarrow> nat"
nipkow@43981
   830
assumes "!!a b. (b,a) : r \<Longrightarrow> ub b \<le> ub a & ub a \<ge> f b & f b > f a"
nipkow@43978
   831
shows "wf r"
nipkow@43978
   832
apply(rule wf_subset[OF wf_measure[of "%a. ub a - f a"]])
nipkow@43978
   833
apply (auto dest: assms)
nipkow@43978
   834
done
nipkow@43978
   835
nipkow@43978
   836
lemma wf_bounded_set:
nipkow@43978
   837
fixes ub :: "'a \<Rightarrow> 'b set" and f :: "'a \<Rightarrow> 'b set"
nipkow@43978
   838
assumes "!!a b. (b,a) : r \<Longrightarrow>
nipkow@43981
   839
  finite(ub a) & ub b \<subseteq> ub a & ub a \<supseteq> f b & f b \<supset> f a"
nipkow@43978
   840
shows "wf r"
nipkow@43978
   841
apply(rule wf_bounded_measure[of r "%a. card(ub a)" "%a. card(f a)"])
nipkow@43978
   842
apply(drule assms)
nipkow@43981
   843
apply (blast intro: card_mono finite_subset psubset_card_mono dest: psubset_eq[THEN iffD2])
nipkow@43978
   844
done
nipkow@43978
   845
krauss@26748
   846
krauss@26748
   847
subsection {* size of a datatype value *}
krauss@26748
   848
haftmann@31771
   849
use "Tools/Function/size.ML"
krauss@26748
   850
krauss@26748
   851
setup Size.setup
krauss@26748
   852
haftmann@28562
   853
lemma size_bool [code]:
haftmann@27823
   854
  "size (b\<Colon>bool) = 0" by (cases b) auto
haftmann@27823
   855
haftmann@28562
   856
lemma nat_size [simp, code]: "size (n\<Colon>nat) = n"
krauss@26748
   857
  by (induct n) simp_all
krauss@26748
   858
blanchet@35828
   859
declare "prod.size" [no_atp]
krauss@26748
   860
krauss@26748
   861
end