Myhill_1.thy
author wu
Fri, 28 Jan 2011 12:53:01 +0000
changeset 46 28d70591042a
parent 43 cb4403fabda7
child 48 61d9684a557a
permissions -rw-r--r--
test
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     1
theory Myhill_1
43
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
     2
  imports Main List_Prefix Prefix_subtract Prelude
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     3
begin
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     4
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     5
(*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     6
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     7
     \begin{figure}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     8
    \centering
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
     9
    \scalebox{0.95}{
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    10
    \begin{tikzpicture}[->,>=latex,shorten >=1pt,auto,node distance=1.2cm, semithick]
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    11
        \node[state,initial] (n1)                   {$1$};
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    12
        \node[state,accepting] (n2) [right = 10em of n1]   {$2$};
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    13
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    14
        \path (n1) edge [bend left] node {$0$} (n2)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    15
            (n1) edge [loop above] node{$1$} (n1)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    16
            (n2) edge [loop above] node{$0$} (n2)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    17
            (n2) edge [bend left]  node {$1$} (n1)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    18
            ;
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    19
    \end{tikzpicture}}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    20
    \caption{An example automaton (or partition)}\label{fig:example_automata}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    21
    \end{figure}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    22
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    23
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    24
*)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    25
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    26
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    27
section {* Preliminary definitions *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    28
43
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    29
types lang = "string set"
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    30
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    31
text {* 
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    32
  Sequential composition of two languages @{text "L1"} and @{text "L2"} 
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    33
*}
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    34
46
wu
parents: 43
diff changeset
    35
definition Seq :: "lang \<Rightarrow> lang \<Rightarrow> lang" ("_ ;; _" [100,100] 100)
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    36
where 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    37
  "L1 ;; L2 = {s1 @ s2 | s1 s2. s1 \<in> L1 \<and> s2 \<in> L2}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    38
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    39
text {* Transitive closure of language @{text "L"}. *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    40
inductive_set
43
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    41
  Star :: "lang \<Rightarrow> lang" ("_\<star>" [101] 102)
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
    42
  for L 
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    43
where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    44
  start[intro]: "[] \<in> L\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    45
| step[intro]:  "\<lbrakk>s1 \<in> L; s2 \<in> L\<star>\<rbrakk> \<Longrightarrow> s1@s2 \<in> L\<star>" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    46
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    47
text {* Some properties of operator @{text ";;"}.*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    48
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    49
lemma seq_union_distrib:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    50
  "(A \<union> B) ;; C = (A ;; C) \<union> (B ;; C)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    51
by (auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    52
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    53
lemma seq_intro:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    54
  "\<lbrakk>x \<in> A; y \<in> B\<rbrakk> \<Longrightarrow> x @ y \<in> A ;; B "
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    55
by (auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    56
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    57
lemma seq_assoc:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    58
  "(A ;; B) ;; C = A ;; (B ;; C)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    59
apply(auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    60
apply blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    61
by (metis append_assoc)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    62
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    63
lemma star_intro1[rule_format]: "x \<in> lang\<star> \<Longrightarrow> \<forall> y. y \<in> lang\<star> \<longrightarrow> x @ y \<in> lang\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    64
by (erule Star.induct, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    65
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    66
lemma star_intro2: "y \<in> lang \<Longrightarrow> y \<in> lang\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    67
by (drule step[of y lang "[]"], auto simp:start)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    68
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    69
lemma star_intro3[rule_format]: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    70
  "x \<in> lang\<star> \<Longrightarrow> \<forall>y . y \<in> lang \<longrightarrow> x @ y \<in> lang\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    71
by (erule Star.induct, auto intro:star_intro2)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    72
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    73
lemma star_decom: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    74
  "\<lbrakk>x \<in> lang\<star>; x \<noteq> []\<rbrakk> \<Longrightarrow>(\<exists> a b. x = a @ b \<and> a \<noteq> [] \<and> a \<in> lang \<and> b \<in> lang\<star>)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    75
by (induct x rule: Star.induct, simp, blast)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    76
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    77
lemma star_decom': 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    78
  "\<lbrakk>x \<in> lang\<star>; x \<noteq> []\<rbrakk> \<Longrightarrow> \<exists>a b. x = a @ b \<and> a \<in> lang\<star> \<and> b \<in> lang"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    79
apply (induct x rule:Star.induct, simp)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    80
apply (case_tac "s2 = []")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    81
apply (rule_tac x = "[]" in exI, rule_tac x = s1 in exI, simp add:start)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    82
apply (simp, (erule exE| erule conjE)+)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    83
by (rule_tac x = "s1 @ a" in exI, rule_tac x = b in exI, simp add:step)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    84
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    85
text {* Ardens lemma expressed at the level of language, rather than the level of regular expression. *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    86
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    87
theorem ardens_revised:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    88
  assumes nemp: "[] \<notin> A"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    89
  shows "(X = X ;; A \<union> B) \<longleftrightarrow> (X = B ;; A\<star>)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    90
proof
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    91
  assume eq: "X = B ;; A\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    92
  have "A\<star> =  {[]} \<union> A\<star> ;; A" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    93
    by (auto simp:Seq_def star_intro3 star_decom')  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    94
  then have "B ;; A\<star> = B ;; ({[]} \<union> A\<star> ;; A)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    95
    unfolding Seq_def by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    96
  also have "\<dots> = B \<union> B ;; (A\<star> ;; A)"  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    97
    unfolding Seq_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    98
  also have "\<dots> = B \<union> (B ;; A\<star>) ;; A" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
    99
    by (simp only:seq_assoc)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   100
  finally show "X = X ;; A \<union> B" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   101
    using eq by blast 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   102
next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   103
  assume eq': "X = X ;; A \<union> B"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   104
  hence c1': "\<And> x. x \<in> B \<Longrightarrow> x \<in> X" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   105
    and c2': "\<And> x y. \<lbrakk>x \<in> X; y \<in> A\<rbrakk> \<Longrightarrow> x @ y \<in> X" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   106
    using Seq_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   107
  show "X = B ;; A\<star>" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   108
  proof
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   109
    show "B ;; A\<star> \<subseteq> X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   110
    proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   111
      { fix x y
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   112
        have "\<lbrakk>y \<in> A\<star>; x \<in> X\<rbrakk> \<Longrightarrow> x @ y \<in> X "
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   113
          apply (induct arbitrary:x rule:Star.induct, simp)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   114
          by (auto simp only:append_assoc[THEN sym] dest:c2')
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   115
      } thus ?thesis using c1' by (auto simp:Seq_def) 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   116
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   117
  next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   118
    show "X \<subseteq> B ;; A\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   119
    proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   120
      { fix x 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   121
        have "x \<in> X \<Longrightarrow> x \<in> B ;; A\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   122
        proof (induct x taking:length rule:measure_induct)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   123
          fix z
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   124
          assume hyps: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   125
            "\<forall>y. length y < length z \<longrightarrow> y \<in> X \<longrightarrow> y \<in> B ;; A\<star>" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   126
            and z_in: "z \<in> X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   127
          show "z \<in> B ;; A\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   128
          proof (cases "z \<in> B")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   129
            case True thus ?thesis by (auto simp:Seq_def start)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   130
          next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   131
            case False hence "z \<in> X ;; A" using eq' z_in by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   132
            then obtain za zb where za_in: "za \<in> X" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   133
              and zab: "z = za @ zb \<and> zb \<in> A" and zbne: "zb \<noteq> []" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   134
              using nemp unfolding Seq_def by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   135
            from zbne zab have "length za < length z" by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   136
            with za_in hyps have "za \<in> B ;; A\<star>" by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   137
            hence "za @ zb \<in> B ;; A\<star>" using zab 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   138
              by (clarsimp simp:Seq_def, blast dest:star_intro3)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   139
            thus ?thesis using zab by simp       
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   140
          qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   141
        qed 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   142
      } thus ?thesis by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   143
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   144
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   145
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   146
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   147
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   148
text {* The syntax of regular expressions is defined by the datatype @{text "rexp"}. *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   149
datatype rexp =
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   150
  NULL
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   151
| EMPTY
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   152
| CHAR char
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   153
| SEQ rexp rexp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   154
| ALT rexp rexp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   155
| STAR rexp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   156
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   157
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   158
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   159
  The following @{text "L"} is an overloaded operator, where @{text "L(x)"} evaluates to 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   160
  the language represented by the syntactic object @{text "x"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   161
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   162
consts L:: "'a \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   163
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   164
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   165
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   166
  The @{text "L(rexp)"} for regular expression @{text "rexp"} is defined by the 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   167
  following overloading function @{text "L_rexp"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   168
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   169
overloading L_rexp \<equiv> "L::  rexp \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   170
begin
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   171
fun
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   172
  L_rexp :: "rexp \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   173
where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   174
    "L_rexp (NULL) = {}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   175
  | "L_rexp (EMPTY) = {[]}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   176
  | "L_rexp (CHAR c) = {[c]}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   177
  | "L_rexp (SEQ r1 r2) = (L_rexp r1) ;; (L_rexp r2)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   178
  | "L_rexp (ALT r1 r2) = (L_rexp r1) \<union> (L_rexp r2)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   179
  | "L_rexp (STAR r) = (L_rexp r)\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   180
end
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   181
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   182
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   183
  To obtain equational system out of finite set of equivalent classes, a fold operation
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   184
  on finite set @{text "folds"} is defined. The use of @{text "SOME"} makes @{text "fold"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   185
  more robust than the @{text "fold"} in Isabelle library. The expression @{text "folds f"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   186
  makes sense when @{text "f"} is not @{text "associative"} and @{text "commutitive"},
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   187
  while @{text "fold f"} does not.  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   188
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   189
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   190
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   191
  folds :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a set \<Rightarrow> 'b"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   192
where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   193
  "folds f z S \<equiv> SOME x. fold_graph f z S x"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   194
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   195
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   196
  The following lemma assures that the arbitrary choice made by the @{text "SOME"} in @{text "folds"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   197
  does not affect the @{text "L"}-value of the resultant regular expression. 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   198
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   199
lemma folds_alt_simp [simp]:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   200
  "finite rs \<Longrightarrow> L (folds ALT NULL rs) = \<Union> (L ` rs)"
43
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
   201
apply (rule set_eq_intro, simp add:folds_def)
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   202
apply (rule someI2_ex, erule finite_imp_fold_graph)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   203
by (erule fold_graph.induct, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   204
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   205
(* Just a technical lemma. *)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   206
lemma [simp]:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   207
  shows "(x, y) \<in> {(x, y). P x y} \<longleftrightarrow> P x y"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   208
by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   209
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   210
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   211
  @{text "\<approx>L"} is an equivalent class defined by language @{text "Lang"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   212
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   213
definition
43
cb4403fabda7 added my changes again
urbanc
parents: 42
diff changeset
   214
  str_eq_rel ("\<approx>_" [100] 100)
42
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   215
where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   216
  "\<approx>Lang \<equiv> {(x, y).  (\<forall>z. x @ z \<in> Lang \<longleftrightarrow> y @ z \<in> Lang)}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   217
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   218
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   219
  Among equivlant clases of @{text "\<approx>Lang"}, the set @{text "finals(Lang)"} singles out 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   220
  those which contains strings from @{text "Lang"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   221
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   222
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   223
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   224
   "finals Lang \<equiv> {\<approx>Lang `` {x} | x . x \<in> Lang}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   225
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   226
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   227
  The following lemma show the relationshipt between @{text "finals(Lang)"} and @{text "Lang"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   228
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   229
lemma lang_is_union_of_finals: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   230
  "Lang = \<Union> finals(Lang)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   231
proof 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   232
  show "Lang \<subseteq> \<Union> (finals Lang)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   233
  proof
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   234
    fix x
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   235
    assume "x \<in> Lang"   
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   236
    thus "x \<in> \<Union> (finals Lang)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   237
      apply (simp add:finals_def, rule_tac x = "(\<approx>Lang) `` {x}" in exI)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   238
      by (auto simp:Image_def str_eq_rel_def)    
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   239
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   240
next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   241
  show "\<Union> (finals Lang) \<subseteq> Lang"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   242
    apply (clarsimp simp:finals_def str_eq_rel_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   243
    by (drule_tac x = "[]" in spec, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   244
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   245
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   246
section {* Direction @{text "finite partition \<Rightarrow> regular language"}*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   247
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   248
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   249
  The relationship between equivalent classes can be described by an
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   250
  equational system.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   251
  For example, in equational system \eqref{example_eqns},  $X_0, X_1$ are equivalent 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   252
  classes. The first equation says every string in $X_0$ is obtained either by
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   253
  appending one $b$ to a string in $X_0$ or by appending one $a$ to a string in
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   254
  $X_1$ or just be an empty string (represented by the regular expression $\lambda$). Similary,
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   255
  the second equation tells how the strings inside $X_1$ are composed.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   256
  \begin{equation}\label{example_eqns}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   257
    \begin{aligned}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   258
      X_0 & = X_0 b + X_1 a + \lambda \\
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   259
      X_1 & = X_0 a + X_1 b
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   260
    \end{aligned}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   261
  \end{equation}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   262
  The summands on the right hand side is represented by the following data type
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   263
  @{text "rhs_item"}, mnemonic for 'right hand side item'.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   264
  Generally, there are two kinds of right hand side items, one kind corresponds to
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   265
  pure regular expressions, like the $\lambda$ in \eqref{example_eqns}, the other kind corresponds to
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   266
  transitions from one one equivalent class to another, like the $X_0 b, X_1 a$ etc.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   267
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   268
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   269
datatype rhs_item = 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   270
   Lam "rexp"                           (* Lambda *)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   271
 | Trn "(string set)" "rexp"              (* Transition *)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   272
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   273
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   274
  In this formalization, pure regular expressions like $\lambda$ is 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   275
  repsented by @{text "Lam(EMPTY)"}, while transitions like $X_0 a$ is represented by $Trn~X_0~(CHAR~a)$.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   276
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   277
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   278
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   279
  The functions @{text "the_r"} and @{text "the_Trn"} are used to extract
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   280
  subcomponents from right hand side items.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   281
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   282
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   283
fun the_r :: "rhs_item \<Rightarrow> rexp"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   284
where "the_r (Lam r) = r"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   285
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   286
fun the_Trn:: "rhs_item \<Rightarrow> (string set \<times> rexp)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   287
where "the_Trn (Trn Y r) = (Y, r)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   288
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   289
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   290
  Every right hand side item @{text "itm"} defines a string set given 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   291
  @{text "L(itm)"}, defined as:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   292
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   293
overloading L_rhs_e \<equiv> "L:: rhs_item \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   294
begin
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   295
  fun L_rhs_e:: "rhs_item \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   296
  where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   297
     "L_rhs_e (Lam r) = L r" |
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   298
     "L_rhs_e (Trn X r) = X ;; L r"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   299
end
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   300
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   301
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   302
  The right hand side of every equation is represented by a set of
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   303
  items. The string set defined by such a set @{text "itms"} is given
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   304
  by @{text "L(itms)"}, defined as:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   305
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   306
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   307
overloading L_rhs \<equiv> "L:: rhs_item set \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   308
begin
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   309
   fun L_rhs:: "rhs_item set \<Rightarrow> string set"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   310
   where "L_rhs rhs = \<Union> (L ` rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   311
end
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   312
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   313
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   314
  Given a set of equivalent classses @{text "CS"} and one equivalent class @{text "X"} among
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   315
  @{text "CS"}, the term @{text "init_rhs CS X"} is used to extract the right hand side of
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   316
  the equation describing the formation of @{text "X"}. The definition of @{text "init_rhs"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   317
  is:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   318
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   319
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   320
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   321
  "init_rhs CS X \<equiv>  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   322
      if ([] \<in> X) then 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   323
          {Lam(EMPTY)} \<union> {Trn Y (CHAR c) | Y c. Y \<in> CS \<and> Y ;; {[c]} \<subseteq> X}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   324
      else 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   325
          {Trn Y (CHAR c)| Y c. Y \<in> CS \<and> Y ;; {[c]} \<subseteq> X}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   326
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   327
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   328
  In the definition of @{text "init_rhs"}, the term 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   329
  @{text "{Trn Y (CHAR c)| Y c. Y \<in> CS \<and> Y ;; {[c]} \<subseteq> X}"} appearing on both branches
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   330
  describes the formation of strings in @{text "X"} out of transitions, while 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   331
  the term @{text "{Lam(EMPTY)}"} describes the empty string which is intrinsically contained in
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   332
  @{text "X"} rather than by transition. This @{text "{Lam(EMPTY)}"} corresponds to 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   333
  the $\lambda$ in \eqref{example_eqns}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   334
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   335
  With the help of @{text "init_rhs"}, the equitional system descrbing the formation of every
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   336
  equivalent class inside @{text "CS"} is given by the following @{text "eqs(CS)"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   337
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   338
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   339
definition "eqs CS \<equiv> {(X, init_rhs CS X) | X.  X \<in> CS}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   340
(************ arden's lemma variation ********************)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   341
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   342
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   343
  The following @{text "items_of rhs X"} returns all @{text "X"}-items in @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   344
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   345
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   346
  "items_of rhs X \<equiv> {Trn X r | r. (Trn X r) \<in> rhs}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   347
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   348
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   349
  The following @{text "rexp_of rhs X"} combines all regular expressions in @{text "X"}-items
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   350
  using @{text "ALT"} to form a single regular expression. 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   351
  It will be used later to implement @{text "arden_variate"} and @{text "rhs_subst"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   352
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   353
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   354
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   355
  "rexp_of rhs X \<equiv> folds ALT NULL ((snd o the_Trn) ` items_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   356
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   357
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   358
  The following @{text "lam_of rhs"} returns all pure regular expression items in @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   359
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   360
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   361
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   362
  "lam_of rhs \<equiv> {Lam r | r. Lam r \<in> rhs}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   363
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   364
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   365
  The following @{text "rexp_of_lam rhs"} combines pure regular expression items in @{text "rhs"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   366
  using @{text "ALT"} to form a single regular expression. 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   367
  When all variables inside @{text "rhs"} are eliminated, @{text "rexp_of_lam rhs"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   368
  is used to compute compute the regular expression corresponds to @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   369
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   370
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   371
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   372
  "rexp_of_lam rhs \<equiv> folds ALT NULL (the_r ` lam_of rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   373
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   374
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   375
  The following @{text "attach_rexp rexp' itm"} attach 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   376
  the regular expression @{text "rexp'"} to
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   377
  the right of right hand side item @{text "itm"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   378
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   379
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   380
fun attach_rexp :: "rexp \<Rightarrow> rhs_item \<Rightarrow> rhs_item"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   381
where
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   382
  "attach_rexp rexp' (Lam rexp)   = Lam (SEQ rexp rexp')"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   383
| "attach_rexp rexp' (Trn X rexp) = Trn X (SEQ rexp rexp')"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   384
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   385
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   386
  The following @{text "append_rhs_rexp rhs rexp"} attaches 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   387
  @{text "rexp"} to every item in @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   388
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   389
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   390
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   391
  "append_rhs_rexp rhs rexp \<equiv> (attach_rexp rexp) ` rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   392
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   393
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   394
  With the help of the two functions immediately above, Ardens'
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   395
  transformation on right hand side @{text "rhs"} is implemented
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   396
  by the following function @{text "arden_variate X rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   397
  After this transformation, the recursive occurent of @{text "X"}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   398
  in @{text "rhs"} will be eliminated, while the 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   399
  string set defined by @{text "rhs"} is kept unchanged.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   400
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   401
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   402
  "arden_variate X rhs \<equiv> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   403
        append_rhs_rexp (rhs - items_of rhs X) (STAR (rexp_of rhs X))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   404
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   405
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   406
(*********** substitution of ES *************)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   407
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   408
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   409
  Suppose the equation defining @{text "X"} is $X = xrhs$,
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   410
  the purpose of @{text "rhs_subst"} is to substitute all occurences of @{text "X"} in
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   411
  @{text "rhs"} by @{text "xrhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   412
  A litte thought may reveal that the final result
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   413
  should be: first append $(a_1 | a_2 | \ldots | a_n)$ to every item of @{text "xrhs"} and then
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   414
  union the result with all non-@{text "X"}-items of @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   415
 *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   416
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   417
  "rhs_subst rhs X xrhs \<equiv> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   418
        (rhs - (items_of rhs X)) \<union> (append_rhs_rexp xrhs (rexp_of rhs X))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   419
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   420
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   421
  Suppose the equation defining @{text "X"} is $X = xrhs$, the follwing
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   422
  @{text "eqs_subst ES X xrhs"} substitute @{text "xrhs"} into every equation
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   423
  of the equational system @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   424
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   425
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   426
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   427
  "eqs_subst ES X xrhs \<equiv> {(Y, rhs_subst yrhs X xrhs) | Y yrhs. (Y, yrhs) \<in> ES}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   428
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   429
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   430
  The computation of regular expressions for equivalent classes is accomplished
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   431
  using a iteration principle given by the following lemma.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   432
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   433
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   434
lemma wf_iter [rule_format]: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   435
  fixes f
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   436
  assumes step: "\<And> e. \<lbrakk>P e; \<not> Q e\<rbrakk> \<Longrightarrow> (\<exists> e'. P e' \<and>  (f(e'), f(e)) \<in> less_than)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   437
  shows pe:     "P e \<longrightarrow> (\<exists> e'. P e' \<and>  Q e')"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   438
proof(induct e rule: wf_induct 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   439
           [OF wf_inv_image[OF wf_less_than, where f = "f"]], clarify)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   440
  fix x 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   441
  assume h [rule_format]: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   442
    "\<forall>y. (y, x) \<in> inv_image less_than f \<longrightarrow> P y \<longrightarrow> (\<exists>e'. P e' \<and> Q e')"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   443
    and px: "P x"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   444
  show "\<exists>e'. P e' \<and> Q e'"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   445
  proof(cases "Q x")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   446
    assume "Q x" with px show ?thesis by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   447
  next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   448
    assume nq: "\<not> Q x"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   449
    from step [OF px nq]
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   450
    obtain e' where pe': "P e'" and ltf: "(f e', f x) \<in> less_than" by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   451
    show ?thesis
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   452
    proof(rule h)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   453
      from ltf show "(e', x) \<in> inv_image less_than f" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   454
	by (simp add:inv_image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   455
    next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   456
      from pe' show "P e'" .
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   457
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   458
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   459
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   460
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   461
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   462
  The @{text "P"} in lemma @{text "wf_iter"} is an invaiant kept throughout the iteration procedure.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   463
  The particular invariant used to solve our problem is defined by function @{text "Inv(ES)"},
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   464
  an invariant over equal system @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   465
  Every definition starting next till @{text "Inv"} stipulates a property to be satisfied by @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   466
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   467
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   468
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   469
  Every variable is defined at most onece in @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   470
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   471
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   472
  "distinct_equas ES \<equiv> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   473
            \<forall> X rhs rhs'. (X, rhs) \<in> ES \<and> (X, rhs') \<in> ES \<longrightarrow> rhs = rhs'"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   474
text {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   475
  Every equation in @{text "ES"} (represented by @{text "(X, rhs)"}) is valid, i.e. @{text "(X = L rhs)"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   476
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   477
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   478
  "valid_eqns ES \<equiv> \<forall> X rhs. (X, rhs) \<in> ES \<longrightarrow> (X = L rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   479
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   480
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   481
  The following @{text "rhs_nonempty rhs"} requires regular expressions occuring in transitional 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   482
  items of @{text "rhs"} does not contain empty string. This is necessary for
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   483
  the application of Arden's transformation to @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   484
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   485
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   486
  "rhs_nonempty rhs \<equiv> (\<forall> Y r. Trn Y r \<in> rhs \<longrightarrow> [] \<notin> L r)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   487
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   488
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   489
  The following @{text "ardenable ES"} requires that Arden's transformation is applicable
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   490
  to every equation of equational system @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   491
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   492
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   493
  "ardenable ES \<equiv> \<forall> X rhs. (X, rhs) \<in> ES \<longrightarrow> rhs_nonempty rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   494
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   495
(* The following non_empty seems useless. *)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   496
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   497
  "non_empty ES \<equiv> \<forall> X rhs. (X, rhs) \<in> ES \<longrightarrow> X \<noteq> {}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   498
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   499
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   500
  The following @{text "finite_rhs ES"} requires every equation in @{text "rhs"} be finite.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   501
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   502
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   503
  "finite_rhs ES \<equiv> \<forall> X rhs. (X, rhs) \<in> ES \<longrightarrow> finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   504
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   505
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   506
  The following @{text "classes_of rhs"} returns all variables (or equivalent classes)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   507
  occuring in @{text "rhs"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   508
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   509
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   510
  "classes_of rhs \<equiv> {X. \<exists> r. Trn X r \<in> rhs}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   511
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   512
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   513
  The following @{text "lefts_of ES"} returns all variables 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   514
  defined by equational system @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   515
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   516
definition
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   517
  "lefts_of ES \<equiv> {Y | Y yrhs. (Y, yrhs) \<in> ES}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   518
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   519
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   520
  The following @{text "self_contained ES"} requires that every
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   521
  variable occuring on the right hand side of equations is already defined by some
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   522
  equation in @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   523
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   524
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   525
  "self_contained ES \<equiv> \<forall> (X, xrhs) \<in> ES. classes_of xrhs \<subseteq> lefts_of ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   526
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   527
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   528
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   529
  The invariant @{text "Inv(ES)"} is a conjunction of all the previously defined constaints.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   530
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   531
definition 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   532
  "Inv ES \<equiv> valid_eqns ES \<and> finite ES \<and> distinct_equas ES \<and> ardenable ES \<and> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   533
                non_empty ES \<and> finite_rhs ES \<and> self_contained ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   534
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   535
subsection {* The proof of this direction *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   536
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   537
subsubsection {* Basic properties *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   538
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   539
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   540
  The following are some basic properties of the above definitions.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   541
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   542
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   543
lemma L_rhs_union_distrib:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   544
  " L (A::rhs_item set) \<union> L B = L (A \<union> B)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   545
by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   546
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   547
lemma finite_snd_Trn:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   548
  assumes finite:"finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   549
  shows "finite {r\<^isub>2. Trn Y r\<^isub>2 \<in> rhs}" (is "finite ?B")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   550
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   551
  def rhs' \<equiv> "{e \<in> rhs. \<exists> r. e = Trn Y r}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   552
  have "?B = (snd o the_Trn) ` rhs'" using rhs'_def by (auto simp:image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   553
  moreover have "finite rhs'" using finite rhs'_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   554
  ultimately show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   555
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   556
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   557
lemma rexp_of_empty:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   558
  assumes finite:"finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   559
  and nonempty:"rhs_nonempty rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   560
  shows "[] \<notin> L (rexp_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   561
using finite nonempty rhs_nonempty_def
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   562
by (drule_tac finite_snd_Trn[where Y = X], auto simp:rexp_of_def items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   563
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   564
lemma [intro!]:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   565
  "P (Trn X r) \<Longrightarrow> (\<exists>a. (\<exists>r. a = Trn X r \<and> P a))" by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   566
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   567
lemma finite_items_of:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   568
  "finite rhs \<Longrightarrow> finite (items_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   569
by (auto simp:items_of_def intro:finite_subset)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   570
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   571
lemma lang_of_rexp_of:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   572
  assumes finite:"finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   573
  shows "L (items_of rhs X) = X ;; (L (rexp_of rhs X))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   574
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   575
  have "finite ((snd \<circ> the_Trn) ` items_of rhs X)" using finite_items_of[OF finite] by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   576
  thus ?thesis
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   577
    apply (auto simp:rexp_of_def Seq_def items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   578
    apply (rule_tac x = s1 in exI, rule_tac x = s2 in exI, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   579
    by (rule_tac x= "Trn X r" in exI, auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   580
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   581
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   582
lemma rexp_of_lam_eq_lam_set:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   583
  assumes finite: "finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   584
  shows "L (rexp_of_lam rhs) = L (lam_of rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   585
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   586
  have "finite (the_r ` {Lam r |r. Lam r \<in> rhs})" using finite
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   587
    by (rule_tac finite_imageI, auto intro:finite_subset)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   588
  thus ?thesis by (auto simp:rexp_of_lam_def lam_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   589
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   590
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   591
lemma [simp]:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   592
  " L (attach_rexp r xb) = L xb ;; L r"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   593
apply (cases xb, auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   594
by (rule_tac x = "s1 @ s1a" in exI, rule_tac x = s2a in exI,auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   595
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   596
lemma lang_of_append_rhs:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   597
  "L (append_rhs_rexp rhs r) = L rhs ;; L r"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   598
apply (auto simp:append_rhs_rexp_def image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   599
apply (auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   600
apply (rule_tac x = "L xb ;; L r" in exI, auto simp add:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   601
by (rule_tac x = "attach_rexp r xb" in exI, auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   602
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   603
lemma classes_of_union_distrib:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   604
  "classes_of A \<union> classes_of B = classes_of (A \<union> B)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   605
by (auto simp add:classes_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   606
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   607
lemma lefts_of_union_distrib:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   608
  "lefts_of A \<union> lefts_of B = lefts_of (A \<union> B)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   609
by (auto simp:lefts_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   610
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   611
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   612
subsubsection {* Intialization *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   613
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   614
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   615
  The following several lemmas until @{text "init_ES_satisfy_Inv"} shows that
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   616
  the initial equational system satisfies invariant @{text "Inv"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   617
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   618
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   619
lemma defined_by_str:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   620
  "\<lbrakk>s \<in> X; X \<in> UNIV // (\<approx>Lang)\<rbrakk> \<Longrightarrow> X = (\<approx>Lang) `` {s}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   621
by (auto simp:quotient_def Image_def str_eq_rel_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   622
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   623
lemma every_eqclass_has_transition:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   624
  assumes has_str: "s @ [c] \<in> X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   625
  and     in_CS:   "X \<in> UNIV // (\<approx>Lang)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   626
  obtains Y where "Y \<in> UNIV // (\<approx>Lang)" and "Y ;; {[c]} \<subseteq> X" and "s \<in> Y"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   627
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   628
  def Y \<equiv> "(\<approx>Lang) `` {s}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   629
  have "Y \<in> UNIV // (\<approx>Lang)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   630
    unfolding Y_def quotient_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   631
  moreover
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   632
  have "X = (\<approx>Lang) `` {s @ [c]}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   633
    using has_str in_CS defined_by_str by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   634
  then have "Y ;; {[c]} \<subseteq> X" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   635
    unfolding Y_def Image_def Seq_def
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   636
    unfolding str_eq_rel_def
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   637
    by clarsimp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   638
  moreover
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   639
  have "s \<in> Y" unfolding Y_def 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   640
    unfolding Image_def str_eq_rel_def by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   641
  ultimately show thesis by (blast intro: that)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   642
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   643
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   644
lemma l_eq_r_in_eqs:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   645
  assumes X_in_eqs: "(X, xrhs) \<in> (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   646
  shows "X = L xrhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   647
proof 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   648
  show "X \<subseteq> L xrhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   649
  proof
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   650
    fix x
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   651
    assume "(1)": "x \<in> X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   652
    show "x \<in> L xrhs"          
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   653
    proof (cases "x = []")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   654
      assume empty: "x = []"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   655
      thus ?thesis using X_in_eqs "(1)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   656
        by (auto simp:eqs_def init_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   657
    next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   658
      assume not_empty: "x \<noteq> []"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   659
      then obtain clist c where decom: "x = clist @ [c]"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   660
        by (case_tac x rule:rev_cases, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   661
      have "X \<in> UNIV // (\<approx>Lang)" using X_in_eqs by (auto simp:eqs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   662
      then obtain Y 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   663
        where "Y \<in> UNIV // (\<approx>Lang)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   664
        and "Y ;; {[c]} \<subseteq> X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   665
        and "clist \<in> Y"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   666
        using decom "(1)" every_eqclass_has_transition by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   667
      hence 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   668
        "x \<in> L {Trn Y (CHAR c)| Y c. Y \<in> UNIV // (\<approx>Lang) \<and> Y ;; {[c]} \<subseteq> X}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   669
        using "(1)" decom
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   670
        by (simp, rule_tac x = "Trn Y (CHAR c)" in exI, simp add:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   671
      thus ?thesis using X_in_eqs "(1)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   672
        by (simp add:eqs_def init_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   673
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   674
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   675
next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   676
  show "L xrhs \<subseteq> X" using X_in_eqs
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   677
    by (auto simp:eqs_def init_rhs_def) 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   678
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   679
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   680
lemma finite_init_rhs: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   681
  assumes finite: "finite CS"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   682
  shows "finite (init_rhs CS X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   683
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   684
  have "finite {Trn Y (CHAR c) |Y c. Y \<in> CS \<and> Y ;; {[c]} \<subseteq> X}" (is "finite ?A")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   685
  proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   686
    def S \<equiv> "{(Y, c)| Y c. Y \<in> CS \<and> Y ;; {[c]} \<subseteq> X}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   687
    def h \<equiv> "\<lambda> (Y, c). Trn Y (CHAR c)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   688
    have "finite (CS \<times> (UNIV::char set))" using finite by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   689
    hence "finite S" using S_def 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   690
      by (rule_tac B = "CS \<times> UNIV" in finite_subset, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   691
    moreover have "?A = h ` S" by (auto simp: S_def h_def image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   692
    ultimately show ?thesis 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   693
      by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   694
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   695
  thus ?thesis by (simp add:init_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   696
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   697
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   698
lemma init_ES_satisfy_Inv:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   699
  assumes finite_CS: "finite (UNIV // (\<approx>Lang))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   700
  shows "Inv (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   701
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   702
  have "finite (eqs (UNIV // (\<approx>Lang)))" using finite_CS
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   703
    by (simp add:eqs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   704
  moreover have "distinct_equas (eqs (UNIV // (\<approx>Lang)))"     
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   705
    by (simp add:distinct_equas_def eqs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   706
  moreover have "ardenable (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   707
    by (auto simp add:ardenable_def eqs_def init_rhs_def rhs_nonempty_def del:L_rhs.simps)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   708
  moreover have "valid_eqns (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   709
    using l_eq_r_in_eqs by (simp add:valid_eqns_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   710
  moreover have "non_empty (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   711
    by (auto simp:non_empty_def eqs_def quotient_def Image_def str_eq_rel_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   712
  moreover have "finite_rhs (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   713
    using finite_init_rhs[OF finite_CS] 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   714
    by (auto simp:finite_rhs_def eqs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   715
  moreover have "self_contained (eqs (UNIV // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   716
    by (auto simp:self_contained_def eqs_def init_rhs_def classes_of_def lefts_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   717
  ultimately show ?thesis by (simp add:Inv_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   718
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   719
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   720
subsubsection {* 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   721
  Interation step
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   722
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   723
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   724
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   725
  From this point until @{text "iteration_step"}, it is proved
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   726
  that there exists iteration steps which keep @{text "Inv(ES)"} while
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   727
  decreasing the size of @{text "ES"}.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   728
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   729
lemma arden_variate_keeps_eq:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   730
  assumes l_eq_r: "X = L rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   731
  and not_empty: "[] \<notin> L (rexp_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   732
  and finite: "finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   733
  shows "X = L (arden_variate X rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   734
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   735
  def A \<equiv> "L (rexp_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   736
  def b \<equiv> "rhs - items_of rhs X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   737
  def B \<equiv> "L b" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   738
  have "X = B ;; A\<star>"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   739
  proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   740
    have "rhs = items_of rhs X \<union> b" by (auto simp:b_def items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   741
    hence "L rhs = L(items_of rhs X \<union> b)" by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   742
    hence "L rhs = L(items_of rhs X) \<union> B" by (simp only:L_rhs_union_distrib B_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   743
    with lang_of_rexp_of
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   744
    have "L rhs = X ;; A \<union> B " using finite by (simp only:B_def b_def A_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   745
    thus ?thesis
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   746
      using l_eq_r not_empty
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   747
      apply (drule_tac B = B and X = X in ardens_revised)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   748
      by (auto simp:A_def simp del:L_rhs.simps)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   749
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   750
  moreover have "L (arden_variate X rhs) = (B ;; A\<star>)" (is "?L = ?R")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   751
    by (simp only:arden_variate_def L_rhs_union_distrib lang_of_append_rhs 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   752
                  B_def A_def b_def L_rexp.simps seq_union_distrib)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   753
   ultimately show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   754
qed 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   755
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   756
lemma append_keeps_finite:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   757
  "finite rhs \<Longrightarrow> finite (append_rhs_rexp rhs r)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   758
by (auto simp:append_rhs_rexp_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   759
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   760
lemma arden_variate_keeps_finite:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   761
  "finite rhs \<Longrightarrow> finite (arden_variate X rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   762
by (auto simp:arden_variate_def append_keeps_finite)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   763
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   764
lemma append_keeps_nonempty:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   765
  "rhs_nonempty rhs \<Longrightarrow> rhs_nonempty (append_rhs_rexp rhs r)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   766
apply (auto simp:rhs_nonempty_def append_rhs_rexp_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   767
by (case_tac x, auto simp:Seq_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   768
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   769
lemma nonempty_set_sub:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   770
  "rhs_nonempty rhs \<Longrightarrow> rhs_nonempty (rhs - A)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   771
by (auto simp:rhs_nonempty_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   772
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   773
lemma nonempty_set_union:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   774
  "\<lbrakk>rhs_nonempty rhs; rhs_nonempty rhs'\<rbrakk> \<Longrightarrow> rhs_nonempty (rhs \<union> rhs')"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   775
by (auto simp:rhs_nonempty_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   776
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   777
lemma arden_variate_keeps_nonempty:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   778
  "rhs_nonempty rhs \<Longrightarrow> rhs_nonempty (arden_variate X rhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   779
by (simp only:arden_variate_def append_keeps_nonempty nonempty_set_sub)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   780
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   781
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   782
lemma rhs_subst_keeps_nonempty:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   783
  "\<lbrakk>rhs_nonempty rhs; rhs_nonempty xrhs\<rbrakk> \<Longrightarrow> rhs_nonempty (rhs_subst rhs X xrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   784
by (simp only:rhs_subst_def append_keeps_nonempty  nonempty_set_union nonempty_set_sub)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   785
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   786
lemma rhs_subst_keeps_eq:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   787
  assumes substor: "X = L xrhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   788
  and finite: "finite rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   789
  shows "L (rhs_subst rhs X xrhs) = L rhs" (is "?Left = ?Right")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   790
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   791
  def A \<equiv> "L (rhs - items_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   792
  have "?Left = A \<union> L (append_rhs_rexp xrhs (rexp_of rhs X))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   793
    by (simp only:rhs_subst_def L_rhs_union_distrib A_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   794
  moreover have "?Right = A \<union> L (items_of rhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   795
  proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   796
    have "rhs = (rhs - items_of rhs X) \<union> (items_of rhs X)" by (auto simp:items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   797
    thus ?thesis by (simp only:L_rhs_union_distrib A_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   798
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   799
  moreover have "L (append_rhs_rexp xrhs (rexp_of rhs X)) = L (items_of rhs X)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   800
    using finite substor  by (simp only:lang_of_append_rhs lang_of_rexp_of)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   801
  ultimately show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   802
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   803
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   804
lemma rhs_subst_keeps_finite_rhs:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   805
  "\<lbrakk>finite rhs; finite yrhs\<rbrakk> \<Longrightarrow> finite (rhs_subst rhs Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   806
by (auto simp:rhs_subst_def append_keeps_finite)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   807
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   808
lemma eqs_subst_keeps_finite:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   809
  assumes finite:"finite (ES:: (string set \<times> rhs_item set) set)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   810
  shows "finite (eqs_subst ES Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   811
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   812
  have "finite {(Ya, rhs_subst yrhsa Y yrhs) |Ya yrhsa. (Ya, yrhsa) \<in> ES}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   813
                                                                  (is "finite ?A")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   814
  proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   815
    def eqns' \<equiv> "{((Ya::string set), yrhsa)| Ya yrhsa. (Ya, yrhsa) \<in> ES}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   816
    def h \<equiv> "\<lambda> ((Ya::string set), yrhsa). (Ya, rhs_subst yrhsa Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   817
    have "finite (h ` eqns')" using finite h_def eqns'_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   818
    moreover have "?A = h ` eqns'" by (auto simp:h_def eqns'_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   819
    ultimately show ?thesis by auto      
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   820
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   821
  thus ?thesis by (simp add:eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   822
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   823
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   824
lemma eqs_subst_keeps_finite_rhs:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   825
  "\<lbrakk>finite_rhs ES; finite yrhs\<rbrakk> \<Longrightarrow> finite_rhs (eqs_subst ES Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   826
by (auto intro:rhs_subst_keeps_finite_rhs simp add:eqs_subst_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   827
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   828
lemma append_rhs_keeps_cls:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   829
  "classes_of (append_rhs_rexp rhs r) = classes_of rhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   830
apply (auto simp:classes_of_def append_rhs_rexp_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   831
apply (case_tac xa, auto simp:image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   832
by (rule_tac x = "SEQ ra r" in exI, rule_tac x = "Trn x ra" in bexI, simp+)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   833
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   834
lemma arden_variate_removes_cl:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   835
  "classes_of (arden_variate Y yrhs) = classes_of yrhs - {Y}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   836
apply (simp add:arden_variate_def append_rhs_keeps_cls items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   837
by (auto simp:classes_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   838
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   839
lemma lefts_of_keeps_cls:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   840
  "lefts_of (eqs_subst ES Y yrhs) = lefts_of ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   841
by (auto simp:lefts_of_def eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   842
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   843
lemma rhs_subst_updates_cls:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   844
  "X \<notin> classes_of xrhs \<Longrightarrow> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   845
      classes_of (rhs_subst rhs X xrhs) = classes_of rhs \<union> classes_of xrhs - {X}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   846
apply (simp only:rhs_subst_def append_rhs_keeps_cls 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   847
                              classes_of_union_distrib[THEN sym])
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   848
by (auto simp:classes_of_def items_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   849
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   850
lemma eqs_subst_keeps_self_contained:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   851
  fixes Y
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   852
  assumes sc: "self_contained (ES \<union> {(Y, yrhs)})" (is "self_contained ?A")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   853
  shows "self_contained (eqs_subst ES Y (arden_variate Y yrhs))" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   854
                                                   (is "self_contained ?B")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   855
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   856
  { fix X xrhs'
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   857
    assume "(X, xrhs') \<in> ?B"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   858
    then obtain xrhs 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   859
      where xrhs_xrhs': "xrhs' = rhs_subst xrhs Y (arden_variate Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   860
      and X_in: "(X, xrhs) \<in> ES" by (simp add:eqs_subst_def, blast)    
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   861
    have "classes_of xrhs' \<subseteq> lefts_of ?B"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   862
    proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   863
      have "lefts_of ?B = lefts_of ES" by (auto simp add:lefts_of_def eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   864
      moreover have "classes_of xrhs' \<subseteq> lefts_of ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   865
      proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   866
        have "classes_of xrhs' \<subseteq> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   867
                        classes_of xrhs \<union> classes_of (arden_variate Y yrhs) - {Y}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   868
        proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   869
          have "Y \<notin> classes_of (arden_variate Y yrhs)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   870
            using arden_variate_removes_cl by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   871
          thus ?thesis using xrhs_xrhs' by (auto simp:rhs_subst_updates_cls)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   872
        qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   873
        moreover have "classes_of xrhs \<subseteq> lefts_of ES \<union> {Y}" using X_in sc
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   874
          apply (simp only:self_contained_def lefts_of_union_distrib[THEN sym])
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   875
          by (drule_tac x = "(X, xrhs)" in bspec, auto simp:lefts_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   876
        moreover have "classes_of (arden_variate Y yrhs) \<subseteq> lefts_of ES \<union> {Y}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   877
          using sc 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   878
          by (auto simp add:arden_variate_removes_cl self_contained_def lefts_of_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   879
        ultimately show ?thesis by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   880
      qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   881
      ultimately show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   882
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   883
  } thus ?thesis by (auto simp only:eqs_subst_def self_contained_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   884
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   885
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   886
lemma eqs_subst_satisfy_Inv:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   887
  assumes Inv_ES: "Inv (ES \<union> {(Y, yrhs)})"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   888
  shows "Inv (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   889
proof -  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   890
  have finite_yrhs: "finite yrhs" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   891
    using Inv_ES by (auto simp:Inv_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   892
  have nonempty_yrhs: "rhs_nonempty yrhs" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   893
    using Inv_ES by (auto simp:Inv_def ardenable_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   894
  have Y_eq_yrhs: "Y = L yrhs" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   895
    using Inv_ES by (simp only:Inv_def valid_eqns_def, blast)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   896
  have "distinct_equas (eqs_subst ES Y (arden_variate Y yrhs))" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   897
    using Inv_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   898
    by (auto simp:distinct_equas_def eqs_subst_def Inv_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   899
  moreover have "finite (eqs_subst ES Y (arden_variate Y yrhs))" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   900
    using Inv_ES by (simp add:Inv_def eqs_subst_keeps_finite)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   901
  moreover have "finite_rhs (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   902
  proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   903
    have "finite_rhs ES" using Inv_ES 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   904
      by (simp add:Inv_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   905
    moreover have "finite (arden_variate Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   906
    proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   907
      have "finite yrhs" using Inv_ES 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   908
        by (auto simp:Inv_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   909
      thus ?thesis using arden_variate_keeps_finite by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   910
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   911
    ultimately show ?thesis 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   912
      by (simp add:eqs_subst_keeps_finite_rhs)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   913
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   914
  moreover have "ardenable (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   915
  proof - 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   916
    { fix X rhs
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   917
      assume "(X, rhs) \<in> ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   918
      hence "rhs_nonempty rhs"  using prems Inv_ES  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   919
        by (simp add:Inv_def ardenable_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   920
      with nonempty_yrhs 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   921
      have "rhs_nonempty (rhs_subst rhs Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   922
        by (simp add:nonempty_yrhs 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   923
               rhs_subst_keeps_nonempty arden_variate_keeps_nonempty)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   924
    } thus ?thesis by (auto simp add:ardenable_def eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   925
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   926
  moreover have "valid_eqns (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   927
  proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   928
    have "Y = L (arden_variate Y yrhs)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   929
      using Y_eq_yrhs Inv_ES finite_yrhs nonempty_yrhs      
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   930
      by (rule_tac arden_variate_keeps_eq, (simp add:rexp_of_empty)+)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   931
    thus ?thesis using Inv_ES 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   932
      by (clarsimp simp add:valid_eqns_def 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   933
              eqs_subst_def rhs_subst_keeps_eq Inv_def finite_rhs_def
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   934
                   simp del:L_rhs.simps)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   935
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   936
  moreover have 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   937
    non_empty_subst: "non_empty (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   938
    using Inv_ES by (auto simp:Inv_def non_empty_def eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   939
  moreover 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   940
  have self_subst: "self_contained (eqs_subst ES Y (arden_variate Y yrhs))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   941
    using Inv_ES eqs_subst_keeps_self_contained by (simp add:Inv_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   942
  ultimately show ?thesis using Inv_ES by (simp add:Inv_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   943
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   944
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   945
lemma eqs_subst_card_le: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   946
  assumes finite: "finite (ES::(string set \<times> rhs_item set) set)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   947
  shows "card (eqs_subst ES Y yrhs) <= card ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   948
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   949
  def f \<equiv> "\<lambda> x. ((fst x)::string set, rhs_subst (snd x) Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   950
  have "eqs_subst ES Y yrhs = f ` ES" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   951
    apply (auto simp:eqs_subst_def f_def image_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   952
    by (rule_tac x = "(Ya, yrhsa)" in bexI, simp+)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   953
  thus ?thesis using finite by (auto intro:card_image_le)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   954
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   955
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   956
lemma eqs_subst_cls_remains: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   957
  "(X, xrhs) \<in> ES \<Longrightarrow> \<exists> xrhs'. (X, xrhs') \<in> (eqs_subst ES Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   958
by (auto simp:eqs_subst_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   959
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   960
lemma card_noteq_1_has_more:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   961
  assumes card:"card S \<noteq> 1"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   962
  and e_in: "e \<in> S"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   963
  and finite: "finite S"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   964
  obtains e' where "e' \<in> S \<and> e \<noteq> e'" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   965
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   966
  have "card (S - {e}) > 0"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   967
  proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   968
    have "card S > 1" using card e_in finite  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   969
      by (case_tac "card S", auto) 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   970
    thus ?thesis using finite e_in by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   971
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   972
  hence "S - {e} \<noteq> {}" using finite by (rule_tac notI, simp)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   973
  thus "(\<And>e'. e' \<in> S \<and> e \<noteq> e' \<Longrightarrow> thesis) \<Longrightarrow> thesis" by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   974
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   975
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   976
lemma iteration_step: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   977
  assumes Inv_ES: "Inv ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   978
  and    X_in_ES: "(X, xrhs) \<in> ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   979
  and    not_T: "card ES \<noteq> 1"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   980
  shows "\<exists> ES'. (Inv ES' \<and> (\<exists> xrhs'.(X, xrhs') \<in> ES')) \<and> 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   981
                (card ES', card ES) \<in> less_than" (is "\<exists> ES'. ?P ES'")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   982
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   983
  have finite_ES: "finite ES" using Inv_ES by (simp add:Inv_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   984
  then obtain Y yrhs 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   985
    where Y_in_ES: "(Y, yrhs) \<in> ES" and not_eq: "(X, xrhs) \<noteq> (Y, yrhs)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   986
    using not_T X_in_ES by (drule_tac card_noteq_1_has_more, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   987
  def ES' == "ES - {(Y, yrhs)}"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   988
  let ?ES'' = "eqs_subst ES' Y (arden_variate Y yrhs)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   989
  have "?P ?ES''"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   990
  proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   991
    have "Inv ?ES''" using Y_in_ES Inv_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   992
      by (rule_tac eqs_subst_satisfy_Inv, simp add:ES'_def insert_absorb)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   993
    moreover have "\<exists>xrhs'. (X, xrhs') \<in> ?ES''"  using not_eq X_in_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   994
      by (rule_tac ES = ES' in eqs_subst_cls_remains, auto simp add:ES'_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   995
    moreover have "(card ?ES'', card ES) \<in> less_than" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   996
    proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   997
      have "finite ES'" using finite_ES ES'_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   998
      moreover have "card ES' < card ES" using finite_ES Y_in_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
   999
        by (auto simp:ES'_def card_gt_0_iff intro:diff_Suc_less)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1000
      ultimately show ?thesis 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1001
        by (auto dest:eqs_subst_card_le elim:le_less_trans)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1002
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1003
    ultimately show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1004
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1005
  thus ?thesis by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1006
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1007
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1008
subsubsection {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1009
  Conclusion of the proof
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1010
  *}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1011
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1012
text {*
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1013
  From this point until @{text "hard_direction"}, the hard direction is proved
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1014
  through a simple application of the iteration principle.
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1015
*}
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1016
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1017
lemma iteration_conc: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1018
  assumes history: "Inv ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1019
  and    X_in_ES: "\<exists> xrhs. (X, xrhs) \<in> ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1020
  shows 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1021
  "\<exists> ES'. (Inv ES' \<and> (\<exists> xrhs'. (X, xrhs') \<in> ES')) \<and> card ES' = 1" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1022
                                                          (is "\<exists> ES'. ?P ES'")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1023
proof (cases "card ES = 1")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1024
  case True
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1025
  thus ?thesis using history X_in_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1026
    by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1027
next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1028
  case False  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1029
  thus ?thesis using history iteration_step X_in_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1030
    by (rule_tac f = card in wf_iter, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1031
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1032
  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1033
lemma last_cl_exists_rexp:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1034
  assumes ES_single: "ES = {(X, xrhs)}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1035
  and Inv_ES: "Inv ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1036
  shows "\<exists> (r::rexp). L r = X" (is "\<exists> r. ?P r")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1037
proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1038
  let ?A = "arden_variate X xrhs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1039
  have "?P (rexp_of_lam ?A)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1040
  proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1041
    have "L (rexp_of_lam ?A) = L (lam_of ?A)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1042
    proof(rule rexp_of_lam_eq_lam_set)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1043
      show "finite (arden_variate X xrhs)" using Inv_ES ES_single 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1044
        by (rule_tac arden_variate_keeps_finite, 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1045
                       auto simp add:Inv_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1046
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1047
    also have "\<dots> = L ?A"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1048
    proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1049
      have "lam_of ?A = ?A"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1050
      proof-
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1051
        have "classes_of ?A = {}" using Inv_ES ES_single
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1052
          by (simp add:arden_variate_removes_cl 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1053
                       self_contained_def Inv_def lefts_of_def) 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1054
        thus ?thesis 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1055
          by (auto simp only:lam_of_def classes_of_def, case_tac x, auto)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1056
      qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1057
      thus ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1058
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1059
    also have "\<dots> = X"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1060
    proof(rule arden_variate_keeps_eq [THEN sym])
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1061
      show "X = L xrhs" using Inv_ES ES_single 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1062
        by (auto simp only:Inv_def valid_eqns_def)  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1063
    next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1064
      from Inv_ES ES_single show "[] \<notin> L (rexp_of xrhs X)"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1065
        by(simp add:Inv_def ardenable_def rexp_of_empty finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1066
    next
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1067
      from Inv_ES ES_single show "finite xrhs" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1068
        by (simp add:Inv_def finite_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1069
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1070
    finally show ?thesis by simp
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1071
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1072
  thus ?thesis by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1073
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1074
   
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1075
lemma every_eqcl_has_reg: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1076
  assumes finite_CS: "finite (UNIV // (\<approx>Lang))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1077
  and X_in_CS: "X \<in> (UNIV // (\<approx>Lang))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1078
  shows "\<exists> (reg::rexp). L reg = X" (is "\<exists> r. ?E r")
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1079
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1080
  from X_in_CS have "\<exists> xrhs. (X, xrhs) \<in> (eqs (UNIV  // (\<approx>Lang)))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1081
    by (auto simp:eqs_def init_rhs_def)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1082
  then obtain ES xrhs where Inv_ES: "Inv ES" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1083
    and X_in_ES: "(X, xrhs) \<in> ES"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1084
    and card_ES: "card ES = 1"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1085
    using finite_CS X_in_CS init_ES_satisfy_Inv iteration_conc
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1086
    by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1087
  hence ES_single_equa: "ES = {(X, xrhs)}" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1088
    by (auto simp:Inv_def dest!:card_Suc_Diff1 simp:card_eq_0_iff) 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1089
  thus ?thesis using Inv_ES
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1090
    by (rule last_cl_exists_rexp)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1091
qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1092
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1093
lemma finals_in_partitions:
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1094
  "finals Lang \<subseteq> (UNIV // (\<approx>Lang))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1095
  by (auto simp:finals_def quotient_def)   
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1096
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1097
theorem hard_direction: 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1098
  assumes finite_CS: "finite (UNIV // (\<approx>Lang))"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1099
  shows   "\<exists> (reg::rexp). Lang = L reg"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1100
proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1101
  have "\<forall> X \<in> (UNIV // (\<approx>Lang)). \<exists> (reg::rexp). X = L reg" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1102
    using finite_CS every_eqcl_has_reg by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1103
  then obtain f 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1104
    where f_prop: "\<forall> X \<in> (UNIV // (\<approx>Lang)). X = L ((f X)::rexp)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1105
    by (auto dest:bchoice)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1106
  def rs \<equiv> "f ` (finals Lang)"  
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1107
  have "Lang = \<Union> (finals Lang)" using lang_is_union_of_finals by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1108
  also have "\<dots> = L (folds ALT NULL rs)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1109
  proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1110
    have "finite rs"
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1111
    proof -
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1112
      have "finite (finals Lang)" 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1113
        using finite_CS finals_in_partitions[of "Lang"]   
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1114
        by (erule_tac finite_subset, simp)
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1115
      thus ?thesis using rs_def by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1116
    qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1117
    thus ?thesis 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1118
      using f_prop rs_def finals_in_partitions[of "Lang"] by auto
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1119
  qed
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1120
  finally show ?thesis by blast
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1121
qed 
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1122
f809cb54de4e Trying to solve the confict
zhang
parents:
diff changeset
  1123
end