Myhill_2.thy
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sun, 10 Nov 2013 17:07:19 +0000
changeset 392 87d3306acca8
parent 385 e5e32faa2446
permissions -rw-r--r--
added small comments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
338
e7504bfdbd50 made the changes thes 2nd referee suggested and made it to compile again
urbanc
parents: 203
diff changeset
     1
(* Author: Xingyuan Zhang, Chunhan Wu, Christian Urban *)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
     2
theory Myhill_2
372
2c56b20032a7 made changes and updates to the journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 338
diff changeset
     3
  imports Myhill_1 List_Prefix
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
     4
begin
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
     5
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
     6
section {* Second direction of MN: @{text "regular language \<Rightarrow> finite partition"} *}
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
     7
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
     8
subsection {* Tagging functions *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
     9
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    10
definition 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    11
   tag_eq :: "('a list \<Rightarrow> 'b) \<Rightarrow> ('a list \<times> 'a list) set" ("=_=")
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    12
where
166
7743d2ad71d1 updated theories and itp-paper
urbanc
parents: 162
diff changeset
    13
   "=tag= \<equiv> {(x, y). tag x = tag y}"
117
22ba25b808c8 updated second direction
urbanc
parents: 113
diff changeset
    14
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    15
abbreviation
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    16
   tag_eq_applied :: "'a list \<Rightarrow> ('a list \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> bool" ("_ =_= _")
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    17
where
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    18
   "x =tag= y \<equiv> (x, y) \<in> =tag="
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    19
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
    20
lemma [simp]:
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    21
  shows "(\<approx>A) `` {x} = (\<approx>A) `` {y} \<longleftrightarrow> x \<approx>A y"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
    22
unfolding str_eq_def by auto
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    23
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
    24
lemma refined_intro:
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    25
  assumes "\<And>x y z. \<lbrakk>x =tag= y; x @ z \<in> A\<rbrakk> \<Longrightarrow> y @ z \<in> A"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    26
  shows "=tag= \<subseteq> \<approx>A"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
    27
using assms unfolding str_eq_def tag_eq_def
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    28
apply(clarify, simp (no_asm_use))
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    29
by metis
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    30
117
22ba25b808c8 updated second direction
urbanc
parents: 113
diff changeset
    31
lemma finite_eq_tag_rel:
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    32
  assumes rng_fnt: "finite (range tag)"
109
79b37ef9505f minor updated
urbanc
parents: 99
diff changeset
    33
  shows "finite (UNIV // =tag=)"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    34
proof -
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    35
  let "?f" =  "\<lambda>X. tag ` X" and ?A = "(UNIV // =tag=)"
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    36
  have "finite (?f ` ?A)" 
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    37
  proof -
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    38
    have "range ?f \<subseteq> (Pow (range tag))" unfolding Pow_def by auto
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    39
    moreover 
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    40
    have "finite (Pow (range tag))" using rng_fnt by simp
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    41
    ultimately 
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    42
    have "finite (range ?f)" unfolding image_def by (blast intro: finite_subset)
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    43
    moreover
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    44
    have "?f ` ?A \<subseteq> range ?f" by auto
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    45
    ultimately show "finite (?f ` ?A)" by (rule rev_finite_subset) 
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    46
  qed
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    47
  moreover
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    48
  have "inj_on ?f ?A"
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    49
  proof -
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    50
    { fix X Y
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    51
      assume X_in: "X \<in> ?A"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    52
        and  Y_in: "Y \<in> ?A"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    53
        and  tag_eq: "?f X = ?f Y"
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
    54
      then obtain x y 
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    55
        where "x \<in> X" "y \<in> Y" "tag x = tag y"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
    56
        unfolding quotient_def Image_def image_def tag_eq_def
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    57
        by (simp) (blast)
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
    58
      with X_in Y_in 
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    59
      have "X = Y"
338
e7504bfdbd50 made the changes thes 2nd referee suggested and made it to compile again
urbanc
parents: 203
diff changeset
    60
        unfolding quotient_def tag_eq_def by auto
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
    61
    } 
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
    62
    then show "inj_on ?f ?A" unfolding inj_on_def by auto
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    63
  qed
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
    64
  ultimately show "finite (UNIV // =tag=)" by (rule finite_imageD)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    65
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    66
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    67
lemma refined_partition_finite:
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    68
  assumes fnt: "finite (UNIV // R1)"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    69
  and refined: "R1 \<subseteq> R2"
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    70
  and eq1: "equiv UNIV R1" and eq2: "equiv UNIV R2"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    71
  shows "finite (UNIV // R2)"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
    72
proof -
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    73
  let ?f = "\<lambda>X. {R1 `` {x} | x. x \<in> X}" 
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    74
    and ?A = "UNIV // R2" and ?B = "UNIV // R1"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    75
  have "?f ` ?A \<subseteq> Pow ?B"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    76
    unfolding image_def Pow_def quotient_def by auto
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    77
  moreover
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    78
  have "finite (Pow ?B)" using fnt by simp
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    79
  ultimately  
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    80
  have "finite (?f ` ?A)" by (rule finite_subset)
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    81
  moreover
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    82
  have "inj_on ?f ?A"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    83
  proof -
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    84
    { fix X Y
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    85
      assume X_in: "X \<in> ?A" and Y_in: "Y \<in> ?A" and eq_f: "?f X = ?f Y"
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    86
      from quotientE [OF X_in]
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    87
      obtain x where "X = R2 `` {x}" by blast
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    88
      with equiv_class_self[OF eq2] have x_in: "x \<in> X" by simp
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    89
      then have "R1 ``{x} \<in> ?f X" by auto
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    90
      with eq_f have "R1 `` {x} \<in> ?f Y" by simp
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    91
      then obtain y 
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    92
        where y_in: "y \<in> Y" and eq_r1_xy: "R1 `` {x} = R1 `` {y}" by auto
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    93
      with eq_equiv_class[OF _ eq1] 
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    94
      have "(x, y) \<in> R1" by blast
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    95
      with refined have "(x, y) \<in> R2" by auto
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    96
      with quotient_eqI [OF eq2 X_in Y_in x_in y_in]
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    97
      have "X = Y" .
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    98
    } 
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
    99
    then show "inj_on ?f ?A" unfolding inj_on_def by blast 
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   100
  qed
118
c3fa11ee776e first proof
urbanc
parents: 117
diff changeset
   101
  ultimately show "finite (UNIV // R2)" by (rule finite_imageD)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   102
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   103
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   104
lemma tag_finite_imageD:
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   105
  assumes rng_fnt: "finite (range tag)" 
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   106
  and     refined: "=tag=  \<subseteq> \<approx>A"
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   107
  shows "finite (UNIV // \<approx>A)"
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   108
proof (rule_tac refined_partition_finite [of "=tag="])
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   109
  show "finite (UNIV // =tag=)" by (rule finite_eq_tag_rel[OF rng_fnt])
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   110
next
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   111
  show "=tag= \<subseteq> \<approx>A" using refined .
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   112
next
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   113
  show "equiv UNIV =tag="
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   114
  and  "equiv UNIV (\<approx>A)" 
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   115
    unfolding equiv_def str_eq_def tag_eq_def refl_on_def sym_def trans_def
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   116
    by auto
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   117
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   118
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   119
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
   120
subsection {* Base cases: @{const Zero}, @{const One} and @{const Atom} *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   121
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   122
lemma quot_zero_eq:
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   123
  shows "UNIV // \<approx>{} = {UNIV}"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   124
unfolding quotient_def Image_def str_eq_def by auto
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   125
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   126
lemma quot_zero_finiteI [intro]:
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   127
  shows "finite (UNIV // \<approx>{})"
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   128
unfolding quot_zero_eq by simp
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   129
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   130
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   131
lemma quot_one_subset:
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   132
  shows "UNIV // \<approx>{[]} \<subseteq> {{[]}, UNIV - {[]}}"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   133
proof
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   134
  fix x
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   135
  assume "x \<in> UNIV // \<approx>{[]}"
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   136
  then obtain y where h: "x = {z. y \<approx>{[]} z}" 
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   137
    unfolding quotient_def Image_def by blast
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   138
  { assume "y = []"
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   139
    with h have "x = {[]}" by (auto simp: str_eq_def)
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   140
    then have "x \<in> {{[]}, UNIV - {[]}}" by simp }
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   141
  moreover
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   142
  { assume "y \<noteq> []"
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   143
    with h have "x = UNIV - {[]}" by (auto simp: str_eq_def)
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   144
    then have "x \<in> {{[]}, UNIV - {[]}}" by simp }
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   145
  ultimately show "x \<in> {{[]}, UNIV - {[]}}" by blast
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   146
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   147
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   148
lemma quot_one_finiteI [intro]:
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   149
  shows "finite (UNIV // \<approx>{[]})"
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   150
by (rule finite_subset[OF quot_one_subset]) (simp)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   151
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   152
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   153
lemma quot_atom_subset:
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   154
  "UNIV // (\<approx>{[c]}) \<subseteq> {{[]},{[c]}, UNIV - {[], [c]}}"
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   155
proof 
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   156
  fix x 
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   157
  assume "x \<in> UNIV // \<approx>{[c]}"
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   158
  then obtain y where h: "x = {z. (y, z) \<in> \<approx>{[c]}}" 
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   159
    unfolding quotient_def Image_def by blast
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   160
  show "x \<in> {{[]},{[c]}, UNIV - {[], [c]}}"
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   161
  proof -
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   162
    { assume "y = []" hence "x = {[]}" using h 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   163
        by (auto simp: str_eq_def) } 
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   164
    moreover 
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   165
    { assume "y = [c]" hence "x = {[c]}" using h 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   166
        by (auto dest!: spec[where x = "[]"] simp: str_eq_def) } 
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   167
    moreover 
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   168
    { assume "y \<noteq> []" and "y \<noteq> [c]"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   169
      hence "\<forall> z. (y @ z) \<noteq> [c]" by (case_tac y, auto)
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   170
      moreover have "\<And> p. (p \<noteq> [] \<and> p \<noteq> [c]) = (\<forall> q. p @ q \<noteq> [c])" 
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   171
        by (case_tac p, auto)
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   172
      ultimately have "x = UNIV - {[],[c]}" using h
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   173
        by (auto simp add: str_eq_def)
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   174
    } 
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   175
    ultimately show ?thesis by blast
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   176
  qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   177
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   178
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   179
lemma quot_atom_finiteI [intro]:
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   180
  shows "finite (UNIV // \<approx>{[c]})"
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   181
by (rule finite_subset[OF quot_atom_subset]) (simp)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   182
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   183
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
   184
subsection {* Case for @{const Plus} *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   185
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   186
definition 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   187
  tag_Plus :: "'a lang \<Rightarrow> 'a lang \<Rightarrow> 'a list \<Rightarrow> ('a lang \<times> 'a lang)"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   188
where
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   189
  "tag_Plus A B \<equiv> \<lambda>x. (\<approx>A `` {x}, \<approx>B `` {x})"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   190
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   191
lemma quot_plus_finiteI [intro]:
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   192
  assumes finite1: "finite (UNIV // \<approx>A)"
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   193
  and     finite2: "finite (UNIV // \<approx>B)"
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   194
  shows "finite (UNIV // \<approx>(A \<union> B))"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   195
proof (rule_tac tag = "tag_Plus A B" in tag_finite_imageD)
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   196
  have "finite ((UNIV // \<approx>A) \<times> (UNIV // \<approx>B))" 
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   197
    using finite1 finite2 by auto
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   198
  then show "finite (range (tag_Plus A B))"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   199
    unfolding tag_Plus_def quotient_def
119
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   200
    by (rule rev_finite_subset) (auto)
ece3f197b92b first two proofs in 2 direction
urbanc
parents: 118
diff changeset
   201
next
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   202
  show "=tag_Plus A B= \<subseteq> \<approx>(A \<union> B)"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   203
    unfolding tag_eq_def tag_Plus_def str_eq_def by auto
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   204
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   205
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   206
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
   207
subsection {* Case for @{text "Times"} *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   208
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   209
definition
385
e5e32faa2446 updated to new Isabelle
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 372
diff changeset
   210
  "Partitions x \<equiv> {(x\<^sub>p, x\<^sub>s). x\<^sub>p @ x\<^sub>s = x}"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   211
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   212
lemma conc_partitions_elim:
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   213
  assumes "x \<in> A \<cdot> B"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   214
  shows "\<exists>(u, v) \<in> Partitions x. u \<in> A \<and> v \<in> B"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   215
using assms unfolding conc_def Partitions_def
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   216
by auto
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   217
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   218
lemma conc_partitions_intro:
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   219
  assumes "(u, v) \<in> Partitions x \<and> u \<in> A \<and>  v \<in> B"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   220
  shows "x \<in> A \<cdot> B"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   221
using assms unfolding conc_def Partitions_def
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   222
by auto
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   223
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   224
lemma equiv_class_member:
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   225
  assumes "x \<in> A"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   226
  and "\<approx>A `` {x} = \<approx>A `` {y}" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   227
  shows "y \<in> A"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   228
using assms
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   229
apply(simp)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   230
apply(simp add: str_eq_def)
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   231
apply(metis append_Nil2)
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   232
done
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   233
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   234
definition 
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   235
  tag_Times :: "'a lang \<Rightarrow> 'a lang \<Rightarrow> 'a list \<Rightarrow> 'a lang \<times> 'a lang set"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   236
where
385
e5e32faa2446 updated to new Isabelle
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 372
diff changeset
   237
  "tag_Times A B \<equiv> \<lambda>x. (\<approx>A `` {x}, {(\<approx>B `` {x\<^sub>s}) | x\<^sub>p x\<^sub>s. x\<^sub>p \<in> A \<and> (x\<^sub>p, x\<^sub>s) \<in> Partitions x})"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   238
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   239
lemma tag_Times_injI:
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   240
  assumes a: "tag_Times A B x = tag_Times A B y"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   241
  and     c: "x @ z \<in> A \<cdot> B"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   242
  shows "y @ z \<in> A \<cdot> B"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   243
proof -
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   244
  from c obtain u v where 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   245
    h1: "(u, v) \<in> Partitions (x @ z)" and
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   246
    h2: "u \<in> A" and
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   247
    h3: "v \<in> B" by (auto dest: conc_partitions_elim)
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   248
  from h1 have "x @ z = u @ v" unfolding Partitions_def by simp
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   249
  then obtain us 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   250
    where "(x = u @ us \<and> us @ z = v) \<or> (x @ us = u \<and> z = us @ v)"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   251
    by (auto simp add: append_eq_append_conv2)
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   252
  moreover
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   253
  { assume eq: "x = u @ us" "us @ z = v"
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   254
    have "(\<approx>B `` {us}) \<in> snd (tag_Times A B x)"
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   255
      unfolding Partitions_def tag_Times_def using h2 eq 
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   256
      by (auto simp add: str_eq_def)
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   257
    then have "(\<approx>B `` {us}) \<in> snd (tag_Times A B y)"
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   258
      using a by simp
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   259
    then obtain u' us' where
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   260
      q1: "u' \<in> A" and
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   261
      q2: "\<approx>B `` {us} = \<approx>B `` {us'}" and
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   262
      q3: "(u', us') \<in> Partitions y" 
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   263
      unfolding tag_Times_def by auto
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   264
    from q2 h3 eq 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   265
    have "us' @ z \<in> B"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   266
      unfolding Image_def str_eq_def by auto
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   267
    then have "y @ z \<in> A \<cdot> B" using q1 q3 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   268
      unfolding Partitions_def by auto
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   269
  }
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   270
  moreover
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   271
  { assume eq: "x @ us = u" "z = us @ v"
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   272
    have "(\<approx>A `` {x}) = fst (tag_Times A B x)" 
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   273
      by (simp add: tag_Times_def)
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   274
    then have "(\<approx>A `` {x}) = fst (tag_Times A B y)"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   275
      using a by simp
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   276
    then have "\<approx>A `` {x} = \<approx>A `` {y}" 
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   277
      by (simp add: tag_Times_def)
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   278
    moreover 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   279
    have "x @ us \<in> A" using h2 eq by simp
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   280
    ultimately 
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   281
    have "y @ us \<in> A" using equiv_class_member 
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   282
      unfolding Image_def str_eq_def by blast
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   283
    then have "(y @ us) @ v \<in> A \<cdot> B" 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   284
      using h3 unfolding conc_def by blast
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   285
    then have "y @ z \<in> A \<cdot> B" using eq by simp 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   286
  }
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   287
  ultimately show "y @ z \<in> A \<cdot> B" by blast
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   288
qed
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   289
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   290
lemma quot_conc_finiteI [intro]:
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   291
  assumes fin1: "finite (UNIV // \<approx>A)" 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   292
  and     fin2: "finite (UNIV // \<approx>B)" 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   293
  shows "finite (UNIV // \<approx>(A \<cdot> B))"
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   294
proof (rule_tac tag = "tag_Times A B" in tag_finite_imageD)
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   295
  have "\<And>x y z. \<lbrakk>tag_Times A B x = tag_Times A B y; x @ z \<in> A \<cdot> B\<rbrakk> \<Longrightarrow> y @ z \<in> A \<cdot> B"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   296
    by (rule tag_Times_injI)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   297
       (auto simp add: tag_Times_def tag_eq_def)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   298
  then show "=tag_Times A B= \<subseteq> \<approx>(A \<cdot> B)"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   299
    by (rule refined_intro)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   300
       (auto simp add: tag_eq_def)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   301
next
184
2455db3b06ac more on the paper
urbanc
parents: 183
diff changeset
   302
  have *: "finite ((UNIV // \<approx>A) \<times> (Pow (UNIV // \<approx>B)))" 
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   303
    using fin1 fin2 by auto
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   304
  show "finite (range (tag_Times A B))" 
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   305
    unfolding tag_Times_def
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   306
    apply(rule finite_subset[OF _ *])
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   307
    unfolding quotient_def
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   308
    by auto
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   309
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   310
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   311
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
   312
subsection {* Case for @{const "Star"} *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   313
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   314
lemma star_partitions_elim:
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   315
  assumes "x @ z \<in> A\<star>" "x \<noteq> []"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   316
  shows "\<exists>(u, v) \<in> Partitions (x @ z). u < x \<and> u \<in> A\<star> \<and> v \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   317
proof -
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   318
  have "([], x @ z) \<in> Partitions (x @ z)" "[] < x" "[] \<in> A\<star>" "x @ z \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   319
    using assms by (auto simp add: Partitions_def strict_prefix_def)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   320
  then show "\<exists>(u, v) \<in> Partitions (x @ z). u < x \<and> u \<in> A\<star> \<and> v \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   321
    by blast
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   322
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   323
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   324
lemma finite_set_has_max2: 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   325
  "\<lbrakk>finite A; A \<noteq> {}\<rbrakk> \<Longrightarrow> \<exists> max \<in> A. \<forall> a \<in> A. length a \<le> length max"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   326
apply(induct rule:finite.induct)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   327
apply(simp)
338
e7504bfdbd50 made the changes thes 2nd referee suggested and made it to compile again
urbanc
parents: 203
diff changeset
   328
by (metis (hide_lams, no_types) all_not_in_conv insert_iff linorder_le_cases order_trans)
162
e93760534354 added directory for journal version; took uptodate version of the theory files
urbanc
parents: 160
diff changeset
   329
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   330
lemma finite_strict_prefix_set: 
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   331
  shows "finite {xa. xa < (x::'a list)}"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   332
apply (induct x rule:rev_induct, simp)
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   333
apply (subgoal_tac "{xa. xa < xs @ [x]} = {xa. xa < xs} \<union> {xs}")
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   334
by (auto simp:strict_prefix_def)
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   335
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   336
lemma append_eq_cases:
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   337
  assumes a: "x @ y = m @ n" "m \<noteq> []"  
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   338
  shows "x \<le> m \<or> m < x"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   339
unfolding prefix_def strict_prefix_def using a
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   340
by (auto simp add: append_eq_append_conv2)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   341
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   342
lemma star_spartitions_elim2:
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   343
  assumes a: "x @ z \<in> A\<star>" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   344
  and     b: "x \<noteq> []"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   345
  shows "\<exists>(u, v) \<in> Partitions x. \<exists> (u', v') \<in> Partitions z. u < x \<and> u \<in> A\<star> \<and> v @ u' \<in> A \<and> v' \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   346
proof -
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   347
  def S \<equiv> "{u | u v. (u, v) \<in> Partitions x \<and> u < x \<and> u \<in> A\<star> \<and> v @ z \<in> A\<star>}"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   348
  have "finite {u. u < x}" by (rule finite_strict_prefix_set)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   349
  then have "finite S" unfolding S_def
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   350
    by (rule rev_finite_subset) (auto)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   351
  moreover 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   352
  have "S \<noteq> {}" using a b unfolding S_def Partitions_def
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   353
    by (auto simp: strict_prefix_def)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   354
  ultimately have "\<exists> u_max \<in> S. \<forall> u \<in> S. length u \<le> length u_max"  
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   355
    using finite_set_has_max2 by blast
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   356
  then obtain u_max v 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   357
    where h0: "(u_max, v) \<in> Partitions x"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   358
    and h1: "u_max < x" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   359
    and h2: "u_max \<in> A\<star>" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   360
    and h3: "v @ z \<in> A\<star>"  
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   361
    and h4: "\<forall> u v. (u, v) \<in> Partitions x \<and> u < x \<and> u \<in> A\<star> \<and> v @ z \<in> A\<star> \<longrightarrow> length u \<le> length u_max"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   362
    unfolding S_def Partitions_def by blast
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   363
  have q: "v \<noteq> []" using h0 h1 b unfolding Partitions_def by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   364
  from h3 obtain a b
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   365
    where i1: "(a, b) \<in> Partitions (v @ z)"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   366
    and   i2: "a \<in> A"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   367
    and   i3: "b \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   368
    and   i4: "a \<noteq> []"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   369
    unfolding Partitions_def
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   370
    using q by (auto dest: star_decom)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   371
  have "v \<le> a"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   372
  proof (rule ccontr)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   373
    assume a: "\<not>(v \<le> a)"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   374
    from i1 have i1': "a @ b = v @ z" unfolding Partitions_def by simp
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   375
    then have "a \<le> v \<or> v < a" using append_eq_cases q by blast
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   376
    then have q: "a < v" using a unfolding strict_prefix_def prefix_def by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   377
    then obtain as where eq: "a @ as = v" unfolding strict_prefix_def prefix_def by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   378
    have "(u_max @ a, as) \<in> Partitions x" using eq h0 unfolding Partitions_def by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   379
    moreover
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   380
    have "u_max @ a < x" using h0 eq q unfolding Partitions_def strict_prefix_def prefix_def by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   381
    moreover
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   382
    have "u_max @ a \<in> A\<star>" using i2 h2 by simp
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   383
    moreover
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   384
    have "as @ z \<in> A\<star>" using i1' i2 i3 eq by auto
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   385
    ultimately have "length (u_max @ a) \<le> length u_max" using h4 by blast
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   386
    with i4 show "False" by auto
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   387
  qed
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   388
  with i1 obtain za zb
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   389
    where k1: "v @ za = a"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   390
    and   k2: "(za, zb) \<in> Partitions z" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   391
    and   k4: "zb = b" 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   392
    unfolding Partitions_def prefix_def
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   393
    by (auto simp add: append_eq_append_conv2)
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   394
  show "\<exists> (u, v) \<in> Partitions x. \<exists> (u', v') \<in> Partitions z. u < x \<and> u \<in> A\<star> \<and> v @ u' \<in> A \<and> v' \<in> A\<star>"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   395
    using h0 h1 h2 i2 i3 k1 k2 k4 unfolding Partitions_def by blast
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   396
qed
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   397
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   398
definition 
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   399
  tag_Star :: "'a lang \<Rightarrow> 'a list \<Rightarrow> ('a lang) set"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   400
where
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   401
  "tag_Star A \<equiv> \<lambda>x. {\<approx>A `` {v} | u v. u < x \<and> u \<in> A\<star> \<and> (u, v) \<in> Partitions x}"
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   402
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   403
lemma tag_Star_non_empty_injI:
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   404
  assumes a: "tag_Star A x = tag_Star A y"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   405
  and     c: "x @ z \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   406
  and     d: "x \<noteq> []"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   407
  shows "y @ z \<in> A\<star>"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   408
proof -
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   409
  obtain u v u' v' 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   410
    where a1: "(u,  v) \<in> Partitions x" "(u', v')\<in> Partitions z"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   411
    and   a2: "u < x"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   412
    and   a3: "u \<in> A\<star>"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   413
    and   a4: "v @ u' \<in> A" 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   414
    and   a5: "v' \<in> A\<star>"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   415
    using c d by (auto dest: star_spartitions_elim2)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   416
  have "(\<approx>A) `` {v} \<in> tag_Star A x" 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   417
    apply(simp add: tag_Star_def Partitions_def str_eq_def)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   418
    using a1 a2 a3 by (auto simp add: Partitions_def)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   419
  then have "(\<approx>A) `` {v} \<in> tag_Star A y" using a by simp
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   420
  then obtain u1 v1 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   421
    where b1: "v \<approx>A v1"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   422
    and   b3: "u1 \<in> A\<star>"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   423
    and   b4: "(u1, v1) \<in> Partitions y"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   424
    unfolding tag_Star_def by auto
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   425
  have c: "v1 @ u' \<in> A\<star>" using b1 a4 unfolding str_eq_def by simp
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   426
  have "u1 @ (v1 @ u') @ v' \<in> A\<star>"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   427
    using b3 c a5 by (simp only: append_in_starI)
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   428
  then show "y @ z \<in> A\<star>" using b4 a1 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   429
    unfolding Partitions_def by auto
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   430
qed
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   431
    
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   432
lemma tag_Star_empty_injI:
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   433
  assumes a: "tag_Star A x = tag_Star A y"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   434
  and     c: "x @ z \<in> A\<star>"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   435
  and     d: "x = []"
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   436
  shows "y @ z \<in> A\<star>"
187
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   437
proof -
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   438
  from a have "{} = tag_Star A y" unfolding tag_Star_def using d by auto 
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   439
  then have "y = []"
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   440
    unfolding tag_Star_def Partitions_def strict_prefix_def prefix_def
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   441
    by (auto) (metis Nil_in_star append_self_conv2)
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   442
  then show "y @ z \<in> A\<star>" using c d by simp
9f46a9571e37 more on the derivatives section
urbanc
parents: 184
diff changeset
   443
qed
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   444
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   445
lemma quot_star_finiteI [intro]:
166
7743d2ad71d1 updated theories and itp-paper
urbanc
parents: 162
diff changeset
   446
  assumes finite1: "finite (UNIV // \<approx>A)"
7743d2ad71d1 updated theories and itp-paper
urbanc
parents: 162
diff changeset
   447
  shows "finite (UNIV // \<approx>(A\<star>))"
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   448
proof (rule_tac tag = "tag_Star A" in tag_finite_imageD)
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   449
  have "\<And>x y z. \<lbrakk>tag_Star A x = tag_Star A y; x @ z \<in> A\<star>\<rbrakk> \<Longrightarrow> y @ z \<in> A\<star>"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   450
    by (case_tac "x = []") (blast intro: tag_Star_empty_injI tag_Star_non_empty_injI)+
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   451
  then show "=(tag_Star A)= \<subseteq> \<approx>(A\<star>)"
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   452
    by (rule refined_intro) (auto simp add: tag_eq_def)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   453
next
166
7743d2ad71d1 updated theories and itp-paper
urbanc
parents: 162
diff changeset
   454
  have *: "finite (Pow (UNIV // \<approx>A))" 
182
560712a29a36 a version of the proof which dispenses with the notion of string-subtraction
urbanc
parents: 181
diff changeset
   455
     using finite1 by auto
181
97090fc7aa9f some experiments with the proofs in Myhill_2
urbanc
parents: 180
diff changeset
   456
  show "finite (range (tag_Star A))"
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   457
    unfolding tag_Star_def 
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   458
    by (rule finite_subset[OF _ *])
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   459
       (auto simp add: quotient_def)
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   460
qed
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   461
203
5d724fe0e096 changes according to afp-submission
urbanc
parents: 187
diff changeset
   462
subsection {* The conclusion of the second direction *}
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   463
112
62fdb4bf7239 more on the conclusion
urbanc
parents: 109
diff changeset
   464
lemma Myhill_Nerode2:
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   465
  fixes r::"'a rexp"
170
b1258b7d2789 made the theories compatible with the existing developments in the AFP; old theories are in the directory Attic
urbanc
parents: 166
diff changeset
   466
  shows "finite (UNIV // \<approx>(lang r))"
63
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   467
by (induct r) (auto)
649ff0b8766d Myhill_2.thy added
zhang
parents:
diff changeset
   468
183
c4893e84c88e cleaned up the proofs in Myhill_2
urbanc
parents: 182
diff changeset
   469
end