RTree.thy
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 07 Jul 2016 13:32:09 +0100
changeset 133 4b717aa162fa
parent 132 d9974794436a
child 134 8a13b37b4d95
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     1
theory RTree
131
6a7a8c51d42f unified Rtree.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
     2
imports "~~/src/HOL/Library/Transitive_Closure_Table" 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     3
begin
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     4
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     5
section {* A theory of relational trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     6
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     7
inductive_cases path_nilE [elim!]: "rtrancl_path r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     8
inductive_cases path_consE [elim!]: "rtrancl_path r x (z#zs) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     9
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    10
subsection {* Definitions *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    11
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    12
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    13
  In this theory, we are going to give a notion of of `Relational Graph` and
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    14
  its derived notion `Relational Tree`. Given a binary relation @{text "r"},
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    15
  the `Relational Graph of @{text "r"}` is the graph, the edges of which
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    16
  are those in @{text "r"}. In this way, any binary relation can be viewed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    17
  as a `Relational Graph`. Note, this notion of graph includes infinite graphs. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    18
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    19
  A `Relation Graph` @{text "r"} is said to be a `Relational Tree` if it is both
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    20
  {\em single valued} and {\em acyclic}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    21
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    22
131
6a7a8c51d42f unified Rtree.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    23
6a7a8c51d42f unified Rtree.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    24
locale rtree = 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    25
  fixes r
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    26
  assumes sgv: "single_valued r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    27
  assumes acl: "acyclic r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    28
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    29
text {* 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    30
  The following two auxiliary functions @{text "rel_of"} and @{text "pred_of"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    31
  transfer between the predicate and set representation of binary relations.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    32
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    33
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    34
definition "rel_of r = {(x, y) | x y. r x y}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    35
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    36
definition "pred_of r = (\<lambda> x y. (x, y) \<in> r)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    37
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    38
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    39
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    40
  To reason about {\em Relational Graph}, a notion of path is needed,
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    41
  which is given by the following @{text "rpath"} (short for
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    42
  `relational path`).  The path @{text "xs"} in proposition @{text
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    43
  "rpath r x xs y"} is a path leading from @{text "x"} to @{text "y"},
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    44
  which serves as a witness of the fact @{text "(x, y) \<in> r^*"}.
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    45
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    46
  @{text "rpath"} is simply a wrapper of the @{text "rtrancl_path"}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    47
  defined in the imported theory @{text "Transitive_Closure_Table"},
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    48
  which defines a notion of path for the predicate form of binary
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    49
  relations.  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    50
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    51
definition "rpath r x xs y = rtrancl_path (pred_of r) x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    52
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    53
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    54
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    55
  Given a path @{text "ps"}, @{text "edges_on ps"} is the set of edges
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    56
  along the path, which is defined as follows: *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    58
definition "edges_on ps = {(a,b) | a b. \<exists> xs ys. ps = xs@[a,b]@ys}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    59
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    60
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    61
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    62
   The following @{text "indep"} defines a notion of independence.
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    63
   Two nodes @{text "x"} and @{text "y"} are said to be independent
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    64
   (expressed as @{text "indep x y"}), if neither one is reachable
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    65
   from the other in relational graph @{text "r"}.  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    66
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    67
definition "indep r x y = (((x, y) \<notin> r^*) \<and> ((y, x) \<notin> r^*))"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    68
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    69
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    70
 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    71
 In relational tree @{text "r"}, the sub tree of node @{text "x"} is
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    72
  written @{text "subtree r x"}, which is defined to be the set of
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    73
  nodes (including itself) which can reach @{text "x"} by following
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    74
  some path in @{text "r"}: *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    75
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    76
definition "subtree r x = {y . (y, x) \<in> r^*}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    77
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    78
definition "ancestors r x = {y. (x, y) \<in> r^+}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    79
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    80
definition "root r x = (ancestors r x = {})"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    81
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    82
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    83
 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    84
  The following @{text "edge_in r x"} is the set of edges contained in
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    85
  the sub-tree of @{text "x"}, with @{text "r"} as the underlying
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    86
  graph.  *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    87
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    88
definition "edges_in r x = {(a, b) | a b. (a, b) \<in> r \<and> b \<in> subtree r x}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    89
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    90
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    91
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    92
  The following lemma @{text "edges_in_meaning"} shows the intuitive
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    93
  meaning of `an edge @{text "(a, b)"} is in the sub-tree of @{text
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    94
  "x"}`, i.e., both @{text "a"} and @{text "b"} are in the sub-tree.
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    95
  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    96
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    97
lemma edges_in_meaning: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    98
  "edges_in r x = {(a, b) | a b. (a, b) \<in> r \<and> a \<in> subtree r x \<and> b \<in> subtree r x}"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
    99
 by (auto simp:edges_in_def subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   100
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   101
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   102
  The following lemma shows the meaning of @{term "edges_in"} from the other side, 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   103
  which says: for the edge @{text "(a,b)"} to be outside of the sub-tree of @{text "x"}, 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   104
  it is sufficient to show that @{text "b"} is.
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   105
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   106
lemma edges_in_refutation:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   107
  assumes "b \<notin> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   108
  shows "(a, b) \<notin> edges_in r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   109
  using assms by (unfold edges_in_def subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   110
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   111
definition "children r x = {y. (y, x) \<in> r}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   112
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
   113
locale fgraph = rtree +
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
   114
  assumes fb: "finite (children r x)"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
   115
  assumes wf: "wf r"
62
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   116
begin
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   117
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   118
lemma finite_children: "finite (children r x)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   119
  using fb by (cases "children r x = {}", auto simp:children_def)
62
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   120
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   121
end
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   122
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   123
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   124
subsection {* Auxiliary lemmas *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   125
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   126
lemma index_minimize:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   127
  assumes "P (i::nat)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   128
  obtains j where "P j" and "\<forall> k < j. \<not> P k" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   129
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   130
  by (induct i rule:less_induct, auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   131
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   132
subsection {* Properties of Relational Graphs and Relational Trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   133
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   134
subsubsection {* Properties of @{text "rel_of"} and @{text "pred_of"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   135
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   136
text {* The following lemmas establish bijectivity of the two functions *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   137
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   138
lemma pred_rel_eq: "pred_of (rel_of r) = r" by (auto simp:rel_of_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   139
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   140
lemma rel_pred_eq: "rel_of (pred_of r) = r" by (auto simp:rel_of_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   141
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   142
lemma rel_of_star: "rel_of (r^**) = (rel_of r)^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   143
  by (unfold rel_of_def rtranclp_rtrancl_eq, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   144
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   145
lemma pred_of_star: "pred_of (r^*) = (pred_of r)^**"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   146
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   147
  { fix x y
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   148
    have "pred_of (r^*) x y = (pred_of r)^** x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   149
    by (unfold pred_of_def rtranclp_rtrancl_eq, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   150
  } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   151
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   152
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   153
lemma star_2_pstar: "(x, y) \<in> r^* = (pred_of (r^*)) x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   154
  by (simp add: pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   155
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   156
subsubsection {* Properties of @{text "rpath"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   157
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   158
text {* Induction rule for @{text "rpath"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   159
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   160
lemma rpath_induct [consumes 1, case_names rbase rstep, induct pred: rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   161
  assumes "rpath r x1 x2 x3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   162
    and "\<And>x. P x [] x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   163
    and "\<And>x y ys z. (x, y) \<in> r \<Longrightarrow> rpath r y ys z \<Longrightarrow> P y ys z \<Longrightarrow> P x (y # ys) z"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   164
  shows "P x1 x2 x3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   165
  using assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   166
  by (induct, auto simp:pred_of_def rpath_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   167
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   168
lemma rpathE [elim]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   169
  assumes "rpath r x xs y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   170
  obtains (base) "y = x" "xs = []"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   171
     | (step) z zs where "(x, z) \<in> r" "rpath r z zs y" "xs = z#zs"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   172
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   173
  by (induct, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   174
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   175
text {* Introduction rule for empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   176
lemma rbaseI [intro!]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   177
  assumes "x = y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   178
  shows "rpath r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   179
  by  (unfold rpath_def assms, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   180
         rule Transitive_Closure_Table.rtrancl_path.base)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   181
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   182
text {* Introduction rule for non-empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   183
lemma rstepI [intro!]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   184
  assumes "(x, y) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   185
    and "rpath r y ys z"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   186
  shows "rpath r x (y#ys) z" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   187
proof(unfold rpath_def, rule Transitive_Closure_Table.rtrancl_path.step)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   188
  from assms(1) show "pred_of r x y" by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   189
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   190
  from assms(2) show "rtrancl_path (pred_of r) y ys z"  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   191
  by (auto simp:pred_of_def rpath_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   192
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   193
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   194
lemma rpath_stepI'[intro, simp]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   195
  assumes "rpath r x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   196
  and "(y, z) \<in> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   197
  shows "rpath r x (xs@[z]) z"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   198
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   199
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   200
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   201
text {* Introduction rule for @{text "@"}-path *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   202
lemma rpath_appendI [intro,simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   203
  assumes "rpath r x xs a" and "rpath r a ys y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   204
  shows "rpath r x (xs @ ys) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   205
  using assms 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   206
  by (unfold rpath_def, auto intro:rtrancl_path_trans)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   207
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   208
text {* Elimination rule for empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   209
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   210
lemma rpath_cases [cases pred:rpath,elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   211
  assumes "rpath r a1 a2 a3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   212
  obtains (rbase)  "a1 = a3" and "a2 = []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   213
    | (rstep)  y :: "'a" and ys :: "'a list"  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   214
         where "(a1, y) \<in> r" and "a2 = y # ys" and "rpath r y ys a3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   215
  using assms [unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   216
  by (cases, auto simp:rpath_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   217
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   218
lemma rpath_nilE [elim!, cases pred:rpath]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   219
  assumes "rpath r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   220
  obtains "y = x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   221
  using assms[unfolded rpath_def] by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   222
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   223
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   224
  Elimination rule for non-empty paths constructed with @{text "#"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   225
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   226
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   227
lemma rpath_ConsE [elim!, cases pred:rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   228
  assumes "rpath r x (y # ys) x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   229
  obtains (rstep) "(x, y) \<in> r" and "rpath r y ys x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   230
  using assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   231
  by (cases, auto simp:rpath_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   232
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   233
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   234
  Elimination rule for non-empty path, where the destination node 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   235
  @{text "y"} is shown to be at the end of the path.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   236
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   237
lemma rpath_nnl_lastE [elim]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   238
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   239
  and "xs \<noteq> []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   240
  obtains xs' where "xs = xs'@[y]"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   241
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   242
proof(induct)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   243
    case (rstep x y ys z)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   244
    thus ?case by (cases ys, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   245
qed auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   246
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   247
text {* Other elimination rules of @{text "rpath"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   248
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   249
lemma rpath_appendE [elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   250
  assumes "rpath r x (xs @ [a] @ ys) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   251
  obtains "rpath r x (xs @ [a]) a" and "rpath r a ys y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   252
  using rtrancl_path_appendE[OF assms[unfolded rpath_def, simplified], folded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   253
  by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   254
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   255
lemma rpath_subE [elim]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   256
  assumes "rpath r x (xs @ [a] @ ys @ [b] @ zs) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   257
  obtains "rpath r x (xs @ [a]) a" and "rpath r a (ys @ [b]) b" and "rpath r b zs y" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   258
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   259
 by (elim rpath_appendE, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   260
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   261
text {* Every path has a unique end point. *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   262
lemma rpath_dest_eq [simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   263
  assumes "rpath r x xs x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   264
  and "rpath r x xs x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   265
  shows "x1 = x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   266
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   267
  by (induct, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   268
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   269
lemma rpath_dest_eq_simp[simp]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   270
  assumes "rpath r x xs1 x1"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   271
  and "rpath r x xs2 x2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   272
  and "xs1 = xs2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   273
  shows "x1 = x2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   274
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   275
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   276
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   277
subsubsection {* Properites of @{text "edges_on"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   278
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   279
lemma edge_on_headI[simp, intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   280
  assumes "(a, b) = (a', b')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   281
  shows "(a, b) \<in> edges_on (a' # b' # xs)"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   282
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   283
  by (unfold edges_on_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   284
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   285
lemma edges_on_ConsI[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   286
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   287
  shows "(a, b) \<in> edges_on (x#xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   288
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   289
  apply (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   290
  by (meson Cons_eq_appendI)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   291
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   292
lemma edges_on_appendI1[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   293
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   294
  shows "(a, b) \<in> edges_on (xs'@xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   295
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   296
  apply (unfold edges_on_def, auto simp:append_assoc)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   297
  by (metis append_assoc)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   298
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   299
lemma edges_on_appendI2[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   300
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   301
  shows "(a, b) \<in> edges_on (xs@xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   302
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   303
  apply (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   304
  by metis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   305
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   306
lemma edges_onE [elim]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   307
  assumes "(a, b) \<in> edges_on xs"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   308
  obtains a' b' xs' where "(a,b) = (a', b')" "xs = a'#b'#xs'"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   309
        | a' b' xs' where "(a,b) \<noteq> (a', b')" "xs = a'#b'#xs'" "(a,b) \<in> edges_on (b'#xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   310
proof(cases xs)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   311
  case Nil
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   312
  with assms show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   313
    by (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   314
next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   315
  case cs1: (Cons a' xsa)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   316
  show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   317
  proof(cases xsa)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   318
    case Nil
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   319
    with cs1 and assms show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   320
      by (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   321
  next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   322
    case (Cons b' xsb)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   323
    show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   324
    proof(cases "(a,b) = (a', b')")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   325
      case True
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   326
      with cs1 Cons show ?thesis using that by metis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   327
    next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   328
      case False
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   329
      from assms[unfolded cs1 Cons edges_on_def]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   330
      obtain xs1 ys1 where "a' # b' # xsb = xs1 @ [a, b] @ ys1" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   331
      moreover with False obtain c xsc where "xs1 = Cons c xsc" by (cases xs1, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   332
      ultimately have h: "b' # xsb = xsc @ [a, b] @ ys1" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   333
      show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   334
        apply (rule that(2)[OF False], insert cs1 Cons, simp)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   335
        using h by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   336
    qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   337
  qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   338
qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   339
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   340
lemma edges_on_nil [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   341
  "edges_on [] = {}" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   342
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   343
lemma edges_on_single [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   344
  "edges_on [a] = {}" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   345
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   346
lemma edges_on_unfold [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   347
  "edges_on (a # b # xs) = {(a, b)} \<union> edges_on (b # xs)" (is "?L = ?R")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   348
by (auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   349
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   350
lemma edges_on_len:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   351
  assumes "x \<in> edges_on l"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   352
  shows "2 \<le> length l" using assms by (cases x, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   353
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   354
text {* Elimination of @{text "edges_on"} for non-empty path *}
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   355
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   356
lemma edges_on_consE [elim!, cases set:edges_on]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   357
  assumes "(a,b) \<in> edges_on (x#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   358
  obtains (head)  xs' where "x = a" and "xs = b#xs'"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   359
      |  (tail)  "(a,b) \<in> edges_on xs"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   360
      using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   361
      by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   362
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   363
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   364
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   365
  Every edges on the path is a graph edges:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   366
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   367
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   368
lemma rpath_edges_on [intro]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   369
  assumes "rpath r x xs y"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   370
  shows "edges_on (x#xs) \<subseteq> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   371
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   372
 by (induct arbitrary:y, auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   373
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   374
text {* @{text "edges_on"} is mono with respect to @{text "#"}-operation: *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   375
lemma edges_on_Cons_mono [intro,simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   376
   shows "edges_on xs \<subseteq> edges_on (x#xs)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   377
   by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   378
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   379
lemma edges_on_append_mono [intro,simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   380
   shows "edges_on xs \<subseteq> edges_on (xs'@xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   381
   by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   382
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   383
lemma edges_on_append_mono' [intro,simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   384
   shows "edges_on xs \<subseteq> edges_on (xs@xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   385
   by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   386
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   387
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   388
  The following rule @{text "rpath_transfer"} is used to show 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   389
  that one path is intact as long as all the edges on it are intact
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   390
  with the change of graph.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   391
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   392
  If @{text "x#xs"} is path in graph @{text "r1"} and 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   393
  every edges along the path is also in @{text "r2"}, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   394
  then @{text "x#xs"} is also a edge in graph @{text "r2"}:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   395
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   396
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   397
lemma rpath_transfer[intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   398
  assumes "rpath r1 x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   399
  and "edges_on (x#xs) \<subseteq> r2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   400
  shows "rpath r2 x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   401
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   402
 by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   403
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   404
lemma edges_on_rpathI[intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   405
  assumes "edges_on (a#xs@[b]) \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   406
  shows "rpath r a (xs@[b]) b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   407
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   408
 by (induct xs arbitrary: a b, auto) 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   409
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   410
lemma list_nnl_appendE [elim]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   411
  assumes "xs \<noteq> []"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   412
  obtains x xs' where "xs = xs'@[x]"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   413
  by (insert assms, rule rev_exhaust, fastforce)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   414
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   415
lemma edges_on_rpathI' [intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   416
  assumes "edges_on (a#xs) \<subseteq> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   417
  and "xs \<noteq> []"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   418
  and "last xs = b"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   419
  shows "rpath r a xs b"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   420
proof -
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   421
  obtain xs' where "xs = xs'@[b]"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   422
  using assms by fastforce
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   423
  with assms show ?thesis by fastforce
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   424
qed
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   425
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   426
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   427
  The following lemma extracts the path from @{text "x"} to @{text "y"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   428
  from proposition @{text "(x, y) \<in> r^*"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   429
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   430
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   431
lemma star_rpath [elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   432
  assumes "(x, y) \<in> r^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   433
  obtains xs where "rpath r x xs y"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   434
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   435
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   436
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   437
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   438
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   439
  The following lemma uses the path @{text "xs"} from @{text "x"} to @{text "y"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   440
  as a witness to show @{text "(x, y) \<in> r^*"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   441
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   442
lemma rpath_star [simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   443
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   444
  shows "(x, y) \<in> r^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   445
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   446
  from iffD2[OF rtranclp_eq_rtrancl_path] and assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   447
  have "(pred_of r)\<^sup>*\<^sup>* x y" by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   448
  thus ?thesis by (simp add: pred_of_star star_2_pstar)
60
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   449
qed  
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   450
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   451
declare rpath_star[elim_format]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   452
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   453
lemma rpath_transfer' [intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   454
  assumes "rpath r1 x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   455
  and "r1 \<subseteq> r2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   456
  shows "rpath r2 x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   457
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   458
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   459
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   460
lemma subtree_transfer[intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   461
  assumes "a \<in> subtree r1 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   462
  and "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   463
  shows "a \<in> subtree r2 a'"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   464
  using assms 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   465
proof -
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   466
  from assms(1) 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   467
  obtain xs where h1: "rpath r1 a xs a'" by (auto simp:subtree_def)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   468
  show ?thesis 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   469
  proof -
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   470
    from rpath_star[OF h1]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   471
    have "(a, a') \<in> r1\<^sup>*" .
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   472
    with assms(2) have  "(a, a') \<in> r2\<^sup>*"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   473
        using rtrancl_mono subsetCE by blast
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   474
    thus ?thesis by (auto simp:subtree_def)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   475
  qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   476
qed 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   477
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   478
text {*
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   479
  @{text "subtree"} is mono with respect to the underlying graph.
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   480
*}
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   481
lemma subtree_mono[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   482
  assumes "r1 \<subseteq> r2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   483
  shows "subtree r1 x \<subseteq> subtree r2 x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   484
  using assms by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   485
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   486
lemma subtree_rev_transfer[intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   487
  assumes "a \<notin> subtree r2 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   488
  and "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   489
  shows "a \<notin> subtree r1 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   490
  using assms and subtree_transfer by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   491
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   492
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   493
  The following lemmas establishes a relation from paths in @{text "r"}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   494
  to @{text "r^+"} relation.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   495
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   496
lemma rpath_plus[simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   497
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   498
  and "xs \<noteq> []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   499
  shows "(x, y) \<in> r^+"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   500
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   501
  by (induct, simp) fastforce
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   502
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   503
lemma plus_rpath [elim]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   504
  assumes "(x, y) \<in> r^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   505
  obtains xs where "rpath r x xs y" and "xs \<noteq> []"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   506
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   507
  from assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   508
  have "\<exists> xs. rpath r x xs y \<and> xs \<noteq> []" by (induct; auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   509
  with that show ?thesis by metis
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   510
qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   511
  
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   512
subsubsection {* Properties of @{text "subtree"} and @{term "ancestors"}*}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   513
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   514
lemma ancestors_subtreeI [intro, dest]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   515
  assumes "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   516
  shows "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   517
  using assms by (auto simp:subtree_def ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   518
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   519
lemma ancestors_Field[elim]:
60
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   520
  assumes "b \<in> ancestors r a"
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   521
  obtains "a \<in> Domain r" "b \<in> Range r"
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   522
  using assms 
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   523
  apply (unfold ancestors_def, simp)
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   524
  by (metis Domain.DomainI Range.intros trancl_domain trancl_range)
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   525
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   526
lemma subtreeE [elim]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   527
  assumes "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   528
  obtains "a = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   529
      | "a \<noteq> b" and "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   530
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   531
  from assms have "(a, b) \<in> r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   532
  from rtranclD[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   533
  have " a = b \<or> a \<noteq> b \<and> (a, b) \<in> r\<^sup>+" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   534
  with that[unfolded ancestors_def] show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   535
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   536
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   537
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   538
lemma subtree_Field [simp, iff]:
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   539
  "subtree r x \<subseteq> Field r \<union> {x}"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   540
proof
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   541
  fix y
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   542
  assume "y \<in> subtree r x"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   543
  thus "y \<in> Field r \<union> {x}"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   544
  proof(cases rule:subtreeE)
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   545
    case 1
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   546
    thus ?thesis by auto
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   547
  next
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   548
    case 2
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   549
    thus ?thesis 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   550
      by (unfold Field_def, fast)
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   551
  qed
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   552
qed
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   553
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   554
lemma subtree_ancestorsI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   555
  assumes "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   556
  and "a \<noteq> b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   557
  shows "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   558
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   559
  by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   560
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   561
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   562
  The following lemma characterizes the change of sub-tree of @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   563
  with the removal of an outside edge @{text "(a,b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   564
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   565
  Note that, according to lemma @{thm edges_in_refutation}, the assumption
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   566
  @{term "b \<notin> subtree r x"} amounts to saying @{text "(a, b)"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   567
  is outside the sub-tree of @{text "x"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   568
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   569
lemma subtree_del_outside [simp,intro]: (* ddd *)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   570
    assumes "b \<notin> subtree r x" 
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   571
    shows "subtree (r - {(a, b)}) x = (subtree r x)" (is "?L = ?R")
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   572
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   573
  { fix c
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   574
    assume "c \<in> ?R"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   575
    hence "(c, x) \<in> r^*" by (auto simp:subtree_def)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   576
    hence "c \<in> ?L"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   577
    proof(rule star_rpath)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   578
      fix xs
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   579
      assume rp: "rpath r c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   580
      show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   581
      proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   582
        from rp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   583
        have "rpath  (r - {(a, b)}) c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   584
        proof(rule rpath_transfer)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   585
          from rp have "edges_on (c # xs) \<subseteq> r" ..
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   586
          moreover have "(a, b) \<notin> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   587
          proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   588
            assume "(a, b) \<in> edges_on (c # xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   589
            then obtain l1 l2 where h: "c#xs = l1@[a,b]@l2" by (auto simp:edges_on_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   590
            hence "tl (c#xs) = tl (l1@[a,b]@l2)" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   591
            then obtain l1' where eq_xs_b: "xs = l1'@[b]@l2" by (cases l1, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   592
            from rp[unfolded this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   593
            show False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   594
              by (rule rpath_appendE, insert assms(1), auto simp:subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   595
          qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   596
          ultimately show "edges_on (c # xs) \<subseteq> (r - {(a, b)})" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   597
            by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   598
        qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   599
        thus ?thesis by (auto simp:subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   600
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   601
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   602
  } moreover {
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   603
    fix c
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   604
    assume "c \<in> ?L"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   605
    moreover have "... \<subseteq> (subtree r x)" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   606
    ultimately have "c \<in> ?R" by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   607
  } ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   608
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   609
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   610
(* ddd *)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   611
lemma subset_del_subtree_outside [simp, intro]: (* ddd *)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   612
    assumes "Range r' \<inter> subtree r x = {}" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   613
    shows "subtree (r - r') x = (subtree r x)" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   614
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   615
  { fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   616
    assume "c \<in> (subtree r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   617
    hence "(c, x) \<in> r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   618
    hence "c \<in> subtree (r - r') x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   619
    proof(rule star_rpath)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   620
      fix xs
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   621
      assume rp: "rpath r c xs x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   622
      show ?thesis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   623
      proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   624
        from rp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   625
        have "rpath  (r - r') c xs x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   626
        proof(rule rpath_transfer)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   627
          from rp have "edges_on (c # xs) \<subseteq> r" ..
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   628
          moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   629
              fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   630
              assume h: "(a, b) \<in> r'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   631
              have "(a, b) \<notin> edges_on (c#xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   632
              proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   633
                assume "(a, b) \<in> edges_on (c # xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   634
                then obtain l1 l2 where "c#xs = (l1@[a])@[b]@l2" by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   635
                hence "tl (c#xs) = tl (l1@[a,b]@l2)" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   636
                then obtain l1' where eq_xs_b: "xs = l1'@[b]@l2" by (cases l1, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   637
                from rp[unfolded this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   638
                show False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   639
                proof(rule rpath_appendE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   640
                  assume "rpath r b l2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   641
                  from rpath_star[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   642
                  have "b \<in> subtree r x" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   643
                  with assms (1) and h show ?thesis by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   644
                qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   645
             qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   646
         } ultimately show "edges_on (c # xs) \<subseteq> (r - r')" by (auto)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   647
        qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   648
        thus ?thesis by (rule rpath_star[elim_format], auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   649
      qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   650
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   651
  } moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   652
    fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   653
    assume "c \<in> subtree (r - r') x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   654
    moreover have "... \<subseteq> (subtree r x)" by (rule subtree_mono, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   655
    ultimately have "c \<in> (subtree r x)" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   656
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   657
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   658
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   659
lemma subtree_insert_ext [simp, intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   660
    assumes "b \<in> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   661
    shows "subtree (r \<union> {(a, b)}) x = (subtree r x) \<union> (subtree r a)" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   662
    using assms by (auto simp:subtree_def rtrancl_insert)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   663
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   664
lemma subtree_insert_next [simp, intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   665
    assumes "b \<notin> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   666
    shows "subtree (r \<union> {(a, b)}) x = (subtree r x)" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   667
    using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   668
    by (auto simp:subtree_def rtrancl_insert)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   669
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   670
lemma set_add_rootI[simp, intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   671
  assumes "root r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   672
  and "a \<notin> Domain r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   673
  shows "root (r \<union> r1) a"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   674
  using assms
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   675
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   676
  let ?r = "r \<union> r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   677
  { fix a'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   678
    assume "a' \<in> ancestors ?r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   679
    hence "(a, a') \<in> ?r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   680
    from tranclD[OF this] obtain z where "(a, z) \<in> ?r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   681
    moreover have "(a, z) \<notin> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   682
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   683
      assume "(a, z) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   684
      with assms(1) show False 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   685
        by (auto simp:root_def ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   686
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   687
    ultimately have "(a, z) \<in> r1" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   688
    with assms(2) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   689
    have False by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   690
  } thus ?thesis by (auto simp:root_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   691
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   692
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   693
lemma ancestors_mono [simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   694
  assumes "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   695
  shows "ancestors r1 x \<subseteq> ancestors r2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   696
proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   697
 fix a
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   698
 assume "a \<in> ancestors r1 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   699
 hence "(x, a) \<in> r1^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   700
 from plus_rpath[OF this] obtain xs where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   701
    h: "rpath r1 x xs a" "xs \<noteq> []" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   702
 have "rpath r2 x xs a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   703
 proof(rule rpath_transfer[OF h(1)])
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   704
  from h(1) have "edges_on (x # xs) \<subseteq> r1" ..
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   705
  also note assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   706
  finally show "edges_on (x # xs) \<subseteq> r2" .
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   707
 qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   708
 from rpath_plus[OF this h(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   709
 show "a \<in> ancestors r2 x" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   710
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   711
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   712
lemma subtree_refute:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   713
  assumes "x \<notin> ancestors r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   714
  and "x \<noteq> y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   715
  shows "y \<notin> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   716
proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   717
   assume "y \<in> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   718
   thus False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   719
     by(elim subtreeE, insert assms, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   720
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   721
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   722
subsubsection {* Properties about relational trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   723
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   724
context rtree 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   725
begin
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   726
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   727
lemma ancestors_headE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   728
  assumes "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   729
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   730
  obtains "b = c"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   731
     |   "c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   732
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   733
  from assms(1) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   734
  have "(a, c) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   735
  hence "b = c \<or> c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   736
  proof(cases rule:converse_tranclE[consumes 1])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   737
    case 1
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   738
    with assms(2) and sgv have "b = c" by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   739
    thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   740
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   741
    case (2 y)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   742
    from 2(1) and assms(2) and sgv have "y = b" by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   743
    from 2(2)[unfolded this] have "c \<in> ancestors r b" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   744
    thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   745
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   746
  with that show ?thesis by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   747
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   748
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   749
lemma ancestors_accum:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   750
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   751
  shows "ancestors r a = ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   752
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   753
  { fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   754
    assume "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   755
    hence "(a, c) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   756
    hence "c \<in> ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   757
    proof(cases rule:converse_tranclE[consumes 1])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   758
      case 1
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   759
      with sgv assms have "c = b" by (unfold single_valued_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   760
      thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   761
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   762
      case (2 c')
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   763
      with sgv assms have "c' = b" by (unfold single_valued_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   764
      from 2(2)[unfolded this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   765
      show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   766
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   767
  } moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   768
    fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   769
    assume "c \<in> ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   770
    hence "c = b \<or> c \<in> ancestors r b" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   771
    hence "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   772
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   773
      assume "c = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   774
      from assms[folded this] 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   775
      show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   776
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   777
      assume "c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   778
      with assms show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   779
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   780
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   781
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   782
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   783
lemma rootI [intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   784
  assumes h: "\<And> x'. x' \<noteq> x \<Longrightarrow> x \<notin> subtree r' x'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   785
  and "r' \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   786
  shows "root r' x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   787
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   788
  from acyclic_subset[OF acl assms(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   789
  have acl': "acyclic r'" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   790
  { fix x'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   791
    assume "x' \<in> ancestors r' x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   792
    hence h1: "(x, x') \<in> r'^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   793
    have "x' \<noteq> x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   794
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   795
      assume eq_x: "x' = x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   796
      from h1[unfolded this] and acl'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   797
      show False by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   798
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   799
    moreover from h1 have "x \<in> subtree r' x'" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   800
    ultimately have False using h by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   801
  } thus ?thesis by (auto simp:root_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   802
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   803
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   804
lemma rpath_overlap_oneside [elim]: (* ddd *)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   805
  assumes "rpath r x xs1 x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   806
  and "rpath r x xs2 x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   807
  and "length xs1 \<le> length xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   808
  obtains xs3 where "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   809
proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   810
  case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   811
  with that show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   812
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   813
  case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   814
  have "\<forall> i \<le> length xs1. take i xs1 = take i xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   815
  proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   816
     { assume "\<not> (\<forall> i \<le> length xs1. take i xs1 = take i xs2)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   817
       then obtain i where "i \<le> length xs1 \<and> take i xs1 \<noteq> take i xs2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   818
       from this(1) have "False"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   819
       proof(rule index_minimize)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   820
          fix j
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   821
          assume h1: "j \<le> length xs1 \<and> take j xs1 \<noteq> take j xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   822
          and h2: " \<forall>k<j. \<not> (k \<le> length xs1 \<and> take k xs1 \<noteq> take k xs2)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   823
          -- {* @{text "j - 1"} is the branch point between @{text "xs1"} and @{text "xs2"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   824
          let ?idx = "j - 1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   825
          -- {* A number of inequalities concerning @{text "j - 1"} are derived first *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   826
          have lt_i: "?idx < length xs1" using False h1 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   827
            by (metis Suc_diff_1 le_neq_implies_less length_greater_0_conv lessI less_imp_diff_less)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   828
          have lt_i': "?idx < length xs2" using lt_i and assms(3) by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   829
          have lt_j: "?idx < j" using h1 by (cases j, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   830
          -- {* From thesis inequalities, a number of equations concerning @{text "xs1"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   831
                 and @{text "xs2"} are derived *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   832
          have eq_take: "take ?idx xs1 = take ?idx xs2"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   833
            using h2[rule_format, OF lt_j] and h1 by linarith
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   834
          have eq_xs1: " xs1 = take ?idx xs1 @ xs1 ! (?idx) # drop (Suc (?idx)) xs1" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   835
            using id_take_nth_drop[OF lt_i] .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   836
          have eq_xs2: "xs2 = take ?idx xs2 @ xs2 ! (?idx) # drop (Suc (?idx)) xs2" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   837
              using id_take_nth_drop[OF lt_i'] .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   838
          -- {* The branch point along the path is finally pinpointed *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   839
          have neq_idx: "xs1!?idx \<noteq> xs2!?idx" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   840
          proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   841
            have "take j xs1 = take ?idx xs1 @ [xs1 ! ?idx]"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   842
                using eq_xs1 Suc_diff_1 lt_i lt_j take_Suc_conv_app_nth by fastforce 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   843
            moreover have eq_tk2: "take j xs2 = take ?idx xs2 @ [xs2 ! ?idx]"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   844
                using Suc_diff_1 lt_i' lt_j take_Suc_conv_app_nth by fastforce 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   845
            ultimately show ?thesis using eq_take h1 by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   846
          qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   847
          show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   848
          proof(cases " take (j - 1) xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   849
            case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   850
            have "(x, xs1!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   851
            proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   852
                from eq_xs1[unfolded True, simplified, symmetric] assms(1) 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   853
                have "rpath r x ( xs1 ! ?idx # drop (Suc ?idx) xs1) x1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   854
                from this[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   855
                show ?thesis by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   856
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   857
            moreover have "(x, xs2!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   858
            proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   859
              from eq_xs2[folded eq_take, unfolded True, simplified, symmetric] assms(2)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   860
              have "rpath r x ( xs2 ! ?idx # drop (Suc ?idx) xs2) x2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   861
              from this[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   862
              show ?thesis by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   863
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   864
            ultimately show ?thesis using neq_idx sgv[unfolded single_valued_def] by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   865
        next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   866
           case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   867
           then obtain e es where eq_es: "take ?idx xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   868
           have "(e, xs1!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   869
           proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   870
            from eq_xs1[unfolded eq_es] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   871
            have "xs1 = es@[e, xs1!?idx]@drop (Suc ?idx) xs1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   872
            hence "(e, xs1!?idx) \<in> edges_on xs1" by (simp add:edges_on_def, metis)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   873
            with rpath_edges_on[OF assms(1)] edges_on_Cons_mono[of xs1 x]
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   874
            show ?thesis by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   875
           qed moreover have "(e, xs2!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   876
           proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   877
            from eq_xs2[folded eq_take, unfolded eq_es]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   878
            have "xs2 = es@[e, xs2!?idx]@drop (Suc ?idx) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   879
            hence "(e, xs2!?idx) \<in> edges_on xs2" by (simp add:edges_on_def, metis)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   880
            with rpath_edges_on[OF assms(2)] edges_on_Cons_mono[of xs2 x]
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   881
            show ?thesis by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   882
           qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   883
           ultimately show ?thesis 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   884
              using sgv[unfolded single_valued_def] neq_idx by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   885
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   886
       qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   887
     } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   888
  qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   889
  from this[rule_format, of "length xs1"]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   890
  have "take (length xs1) xs1 = take (length xs1) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   891
  moreover have "xs2 = take (length xs1) xs2 @ drop (length xs1) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   892
  ultimately have "xs2 = xs1 @ drop (length xs1) xs2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   893
  from that[OF this] show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   894
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   895
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   896
lemma rpath_overlap_oneside':
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   897
  assumes "rpath r x xs1 x1" 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   898
  and "rpath r x xs2 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   899
  and "length xs1 \<le> length xs2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   900
  obtains xs3 where 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   901
    "xs2 = xs1 @ xs3" "rpath r x xs1 x1" "rpath r x1 xs3 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   902
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   903
  from rpath_overlap_oneside[OF assms]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   904
  obtain xs3 where eq_xs: "xs2 = xs1 @ xs3" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   905
  show ?thesis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   906
  proof(cases "xs1 = []")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   907
    case True
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   908
    from rpath_nilE[OF assms(1)[unfolded this]]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   909
    have eq_x1: "x1 = x" .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   910
    have "xs2 = xs3" using True eq_xs by simp
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   911
    from that[OF eq_xs assms(1) assms(2)[folded eq_x1, unfolded this]]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   912
    show ?thesis .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   913
  next
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   914
    case False  
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   915
    from rpath_nnl_lastE[OF assms(1) False]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   916
    obtain xs' where eq_xs1: "xs1 = xs'@[x1]" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   917
    from assms(2)[unfolded eq_xs this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   918
    have "rpath r x (xs' @ [x1] @ xs3) x2" by simp
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   919
    from rpath_appendE[OF this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   920
    have "rpath r x (xs' @ [x1]) x1" "rpath r x1 xs3 x2" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   921
    from that [OF eq_xs this(1)[folded eq_xs1] this(2)]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   922
    show ?thesis .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   923
  qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   924
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   925
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   926
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   927
lemma rpath_overlap [consumes 2, cases pred:rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   928
  assumes "rpath r x xs1 x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   929
  and "rpath r x xs2 x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   930
  obtains (less_1) xs3 where "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   931
     |    (less_2) xs3 where "xs1 = xs2 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   932
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   933
  have "length xs1 \<le> length xs2 \<or> length xs2 \<le> length xs1" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   934
  with assms rpath_overlap_oneside that show ?thesis by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   935
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   936
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   937
lemma rpath_overlap' [consumes 2, cases pred:rpath]:
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   938
  assumes "rpath r x xs1 x1"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   939
  and "rpath r x xs2 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   940
  obtains (less_1) xs3 where "xs2 = xs1 @ xs3" "rpath r x xs1 x1" "rpath r x1 xs3 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   941
     |    (less_2) xs3 where "xs1 = xs2 @ xs3" "rpath r x xs2 x2" "rpath r x2 xs3 x1"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   942
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   943
  have "length xs1 \<le> length xs2 \<or> length xs2 \<le> length xs1" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   944
  with assms rpath_overlap_oneside' that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   945
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   946
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   947
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   948
  As a corollary of @{thm "rpath_overlap_oneside"}, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   949
  the following two lemmas gives one important property of relation tree, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   950
  i.e. there is at most one path between any two nodes.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   951
  Similar to the proof of @{thm rpath_overlap}, we starts with
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   952
  the one side version first.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   953
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   954
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   955
lemma rpath_unique_oneside:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   956
  assumes "rpath r x xs1 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   957
    and "rpath r x xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   958
    and "length xs1 \<le> length xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   959
  shows "xs1 = xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   960
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   961
  from rpath_overlap_oneside[OF assms] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   962
  obtain xs3 where less_1: "xs2 = xs1 @ xs3" by blast
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   963
  show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   964
  proof(cases "xs3 = []") 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   965
    case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   966
    from less_1[unfolded this] show ?thesis by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   967
  next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   968
    case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   969
    note FalseH = this
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   970
    show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   971
    proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   972
      case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   973
      have "(x, x) \<in> r^+"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   974
      proof(rule rpath_plus)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   975
        from assms(1)[unfolded True] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   976
        have "y = x" by (cases rule:rpath_nilE, simp)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   977
        from assms(2)[unfolded this] show "rpath r x xs2 x" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   978
      next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   979
        from less_1 and False show "xs2 \<noteq> []" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   980
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   981
      with acl show ?thesis by (unfold acyclic_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   982
    next 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   983
      case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   984
      then obtain e es where eq_xs1: "xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   985
      from assms(2)[unfolded less_1 this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   986
      have "rpath r x (es @ [e] @ xs3) y" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   987
      thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   988
      proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   989
        case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   990
        from rpath_dest_eq [OF 1(1)[folded eq_xs1] assms(1)]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   991
        have "e = y" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   992
        from rpath_plus [OF 1(2)[unfolded this] FalseH]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   993
        have "(y, y) \<in> r^+" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   994
        with acl show ?thesis by (unfold acyclic_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   995
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   996
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   997
  qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   998
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   999
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1000
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1001
  The following is the full version of path uniqueness.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1002
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1003
lemma rpath_unique:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1004
  assumes "rpath r x xs1 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1005
    and "rpath r x xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1006
  shows "xs1 = xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1007
proof(cases "length xs1 \<le> length xs2")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1008
   case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1009
   from rpath_unique_oneside[OF assms this] show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1010
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1011
  case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1012
  hence "length xs2 \<le> length xs1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1013
  from rpath_unique_oneside[OF assms(2,1) this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1014
  show ?thesis by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1015
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1016
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1017
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1018
  The following lemma shows that the `independence` relation is symmetric.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1019
  It is an obvious auxiliary lemma which will be used later. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1020
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1021
lemma sym_indep: "indep r x y \<Longrightarrow> indep r y x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1022
  by (unfold indep_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1023
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1024
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1025
  This is another `obvious` lemma about trees, which says trees rooted at 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1026
  independent nodes are disjoint.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1027
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1028
lemma subtree_disjoint:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1029
  assumes "indep r x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1030
  shows "subtree r x \<inter> subtree r y = {}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1031
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1032
  { fix z x y xs1 xs2 xs3
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1033
      assume ind: "indep r x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1034
      and rp1: "rpath r z xs1 x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1035
      and rp2: "rpath r z xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1036
      and h: "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1037
      have False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1038
      proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1039
        case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1040
        from rp1[unfolded this] have "x = z" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1041
        from rp2[folded this] rpath_star ind[unfolded indep_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1042
        show ?thesis by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1043
      next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1044
        case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1045
        then obtain e es where eq_xs1: "xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1046
        from rp2[unfolded h this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1047
        have "rpath r z (es @ [e] @ xs3) y" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1048
        thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1049
        proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1050
          case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1051
          have "e = x" using 1(1)[folded eq_xs1] rp1 rpath_dest_eq by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1052
          from rpath_star[OF 1(2)[unfolded this]] ind[unfolded indep_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1053
          show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1054
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1055
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1056
  } note my_rule = this
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1057
  { fix z
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1058
    assume h: "z \<in> subtree r x" "z \<in> subtree r y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1059
    from h(1) have "(z, x) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1060
    then obtain xs1 where rp1: "rpath r z xs1 x" using star_rpath by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1061
    from h(2) have "(z, y) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1062
    then obtain xs2 where rp2: "rpath r z xs2 y" using star_rpath by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1063
    from rp1 rp2
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1064
    have False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1065
    by (cases, insert my_rule[OF sym_indep[OF assms(1)] rp2 rp1] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1066
                  my_rule[OF assms(1) rp1 rp2], auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1067
  } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1068
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1069
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1070
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1071
  The following lemma @{text "subtree_del"} characterizes the change of sub-tree of 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1072
  @{text "x"} with the removal of an inside edge @{text "(a, b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1073
  Note that, the case for the removal of an outside edge has already been dealt with
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1074
  in lemma @{text "subtree_del_outside"}). 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1075
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1076
  This lemma is underpinned by the following two `obvious` facts:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1077
  \begin{enumearte}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1078
  \item
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1079
  In graph @{text "r"}, for an inside edge @{text "(a,b) \<in> edges_in r x"},  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1080
  every node @{text "c"} in the sub-tree of @{text "a"} has a path
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1081
  which goes first from @{text "c"} to @{text "a"}, then through edge @{text "(a, b)"}, and 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1082
  finally reaches @{text "x"}. By the uniqueness of path in a tree,
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1083
  all paths from sub-tree of @{text "a"} to @{text "x"} are such constructed, therefore 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1084
  must go through @{text "(a, b)"}. The consequence is: with the removal of @{text "(a,b)"},
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1085
  all such paths will be broken. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1086
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1087
  \item
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1088
  On the other hand, all paths not originate from within the sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1089
  will not be affected by the removal of edge @{text "(a, b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1090
  The reason is simple: if the path is affected by the removal, it must 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1091
  contain @{text "(a, b)"}, then it must originate from within the sub-tree of @{text "a"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1092
  \end{enumearte}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1093
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1094
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1095
lemma subtree_del_inside: (* ddd *)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1096
    assumes "(a,b) \<in> edges_in r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1097
    shows "subtree (r - {(a, b)}) x = (subtree r x) - subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1098
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1099
  from assms have asm: "b \<in> subtree r x" "(a, b) \<in> r" by (auto simp:edges_in_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1100
  -- {* The proof follows a common pattern to prove the equality of sets. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1101
  { -- {* The `left to right` direction.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1102
       *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1103
    fix c
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1104
    -- {* Assuming @{text "c"} is inside the sub-tree of @{text "x"} in the reduced graph *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1105
    assume h: "c \<in> subtree (r - {(a, b)}) x" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1106
    -- {* We are going to show that @{text "c"} can not be in the sub-tree of @{text "a"} in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1107
          the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1108
    -- {* In other words, all nodes inside the sub-tree of @{text "a"} in the original 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1109
          graph will be removed from the sub-tree of @{text "x"} in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1110
    -- {* The reason, as analyzed before, is that all paths from within the 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1111
          sub-tree of @{text "a"} are broken with the removal of edge @{text "(a,b)"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1112
       *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1113
    have "c \<in> (subtree r x) - subtree r a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1114
    proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1115
      let ?r' = "r - {(a, b)}" -- {* The reduced graph is abbreviated as @{text "?r'"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1116
      from h have "(c, x) \<in> ?r'^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1117
      -- {* Extract from the reduced graph the path @{text "xs"} from @{text "c"} to @{text "x"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1118
      then obtain xs where rp0: "rpath ?r' c xs x" by (rule star_rpath, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1119
      -- {* It is easy to show @{text "xs"} is also a path in the original graph *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1120
      hence rp1: "rpath r c xs x" using rpath_edges_on[OF rp0]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1121
        by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1122
      -- {* @{text "xs"} is used as the witness to show that @{text "c"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1123
                   in the sub-tree of @{text "x"} in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1124
      hence "c \<in> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1125
         by (rule rpath_star[elim_format], auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1126
      -- {* The next step is to show that @{text "c"} can not be in the sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1127
            in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1128
      -- {* We need to use the fact that all paths originate from within sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1129
             are broken. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1130
      moreover have "c \<notin> subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1131
      proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1132
        -- {* Proof by contradiction, suppose otherwise *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1133
        assume otherwise: "c \<in> subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1134
        -- {* Then there is a path in original graph leading from @{text "c"} to @{text "a"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1135
        obtain xs1 where rp_c: "rpath r c xs1 a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1136
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1137
          from otherwise have "(c, a) \<in> r^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1138
          thus ?thesis by (rule star_rpath, auto intro!:that)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1139
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1140
        -- {* Starting from this path, we are going to construct a fictional 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1141
                  path from @{text "c"} to @{text "x"}, which, as explained before,
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1142
              is broken, so that contradiction can be derived. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1143
        -- {* First, there is a path from @{text "b"} to @{text "x"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1144
        obtain ys where rp_b: "rpath r b ys x" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1145
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1146
          from asm have "(b, x) \<in> r^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1147
          thus ?thesis by (rule star_rpath, auto intro!:that)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1148
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1149
        -- {* The paths @{text "xs1"} and @{text "ys"} can be 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1150
                 tied together using @{text "(a,b)"} to form a path 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1151
               from @{text "c"} to @{text "x"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1152
        have "rpath r c (xs1 @ b # ys) x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1153
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1154
          from rstepI[OF asm(2) rp_b] have "rpath r a (b # ys) x" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1155
          from rpath_appendI[OF rp_c this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1156
          show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1157
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1158
        -- {* By the uniqueness of path between two nodes of a tree, we have: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1159
        from rpath_unique[OF rp1 this] have eq_xs: "xs = xs1 @ b # ys" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1160
        -- {* Contradiction can be derived from from this fictional path . *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1161
        show False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1162
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1163
          -- {* It can be shown that @{term "(a,b)"} is on this fictional path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1164
          have "(a, b) \<in> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1165
          proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1166
            case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1167
            from rp_c[unfolded this] have "rpath r c [] a" .
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1168
            hence eq_c: "c = a" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1169
            hence "c#xs = a#xs" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1170
            from this and eq_xs have "c#xs = a # xs1 @ b # ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1171
            from this[unfolded True] have "c#xs = []@[a,b]@ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1172
            thus ?thesis by (auto simp:edges_on_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1173
          next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1174
            case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1175
            from rpath_nnl_lastE[OF rp_c this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1176
            obtain xs' where "xs1 = xs'@[a]" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1177
            from eq_xs[unfolded this] have "c#xs = (c#xs')@[a,b]@ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1178
            thus ?thesis by (unfold edges_on_def, blast)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1179
          qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1180
          -- {* It can also be shown that @{term "(a,b)"} is not on this fictional path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1181
          moreover have "(a, b) \<notin> edges_on (c#xs)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1182
              using rpath_edges_on[OF rp0] by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1183
          -- {* Contradiction is thus derived. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1184
          ultimately show False by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1185
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1186
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1187
      ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1188
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1189
  } moreover {
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1190
    -- {* The `right to left` direction.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1191
       *} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1192
     fix c
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1193
   -- {* Assuming that @{text "c"} is in the sub-tree of @{text "x"}, but
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1194
         outside of the sub-tree of @{text "a"} in the original graph, *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1195
   assume h: "c \<in> (subtree r x) - subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1196
   -- {* we need to show that in the reduced graph, @{text "c"} is still in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1197
         the sub-tree of @{text "x"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1198
   have "c \<in> subtree (r - {(a, b)}) x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1199
   proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1200
      -- {* The proof goes by showing that the path from @{text "c"} to @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1201
            in the original graph is not affected by the removal of @{text "(a,b)"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1202
         *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1203
      from h have "(c, x) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1204
      -- {* Extract the path @{text "xs"} from @{text "c"} to @{text "x"} in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1205
      from star_rpath[OF this] obtain xs where rp: "rpath r c xs x" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1206
      -- {* Show that it is also a path in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1207
      hence "rpath (r - {(a, b)}) c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1208
      -- {* The proof goes by using rule @{thm rpath_transfer} *} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1209
      proof(rule rpath_transfer)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1210
        -- {* We need to show all edges on the path are still in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1211
        show "edges_on (c # xs) \<subseteq> r - {(a, b)}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1212
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1213
          -- {* It is easy to show that all the edges are in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1214
          from rpath_edges_on [OF rp] have " edges_on (c # xs) \<subseteq> r" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1215
          -- {* The essential part is to show that @{text "(a, b)"} is not on the path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1216
          moreover have "(a,b) \<notin> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1217
          proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1218
            -- {* Proof by contradiction, suppose otherwise: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1219
            assume otherwise: "(a, b) \<in> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1220
            -- {* Then @{text "(a, b)"} is in the middle of the path. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1221
                  with @{text "l1"} and @{text "l2"} be the nodes in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1222
                  the front and rear respectively. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1223
              then obtain l1 l2 where eq_xs: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1224
                "c#xs = l1 @ [a, b] @ l2" by (unfold edges_on_def, blast)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1225
            -- {* From this, it can be shown that @{text "c"} is 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1226
                      in the sub-tree of @{text "a"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1227
            have "c \<in> subtree r a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1228
            proof(cases "l1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1229
              case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1230
              -- {* If @{text "l1"} is null, it can be derived that @{text "c = a"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1231
              with eq_xs have "c = a" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1232
              -- {* So, @{text "c"} is obviously in the sub-tree of @{text "a"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1233
              thus ?thesis by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1234
            next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1235
              case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1236
              -- {* When @{text "l1"} is not null, it must have a tail @{text "es"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1237
              then obtain e es where "l1 = e#es" by (cases l1, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1238
              -- {* The relation of this tail with @{text "xs"} is derived: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1239
              with eq_xs have "xs = es@[a,b]@l2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1240
              -- {* From this, a path from @{text "c"} to @{text "a"} is made visible: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1241
              from rp[unfolded this] have "rpath r c (es @ [a] @ (b#l2)) x" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1242
              thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1243
              proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1244
                -- {* The path from @{text "c"} to @{text "a"} is extraced 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1245
                             using @{thm "rpath_appendE"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1246
                case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1247
                from rpath_star[OF this(1)] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1248
                -- {* The extracted path servers as a witness that @{text "c"} is 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1249
                          in the sub-tree of @{text "a"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1250
                show ?thesis by (simp add:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1251
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1252
          qed with h show False by auto         
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1253
         qed ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1254
       qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1255
     qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1256
     -- {* From , it is shown that @{text "c"} is in the sub-tree of @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1257
           inthe reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1258
     from rpath_star[OF this] show ?thesis by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1259
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1260
  } 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1261
  -- {* The equality of sets is derived from the two directions just proved. *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1262
  ultimately show ?thesis by blast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1263
qed 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1264
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1265
lemma  set_del_rootI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1266
  assumes "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1267
  and "a \<in> Domain r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1268
  shows "root (r - r1) a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1269
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1270
   let ?r = "r - r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1271
  { fix a' 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1272
    assume neq: "a' \<noteq> a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1273
    have "a \<notin> subtree ?r a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1274
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1275
      assume "a \<in> subtree ?r a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1276
      hence "(a, a') \<in> ?r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1277
      from star_rpath[OF this] obtain xs
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1278
      where rp: "rpath ?r a xs a'" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1279
      from rpathE[OF this] and neq
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1280
      obtain z zs where h: "(a, z) \<in> ?r" "rpath ?r z zs a'" "xs = z#zs" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1281
      from assms(2) obtain z' where z'_in: "(a, z') \<in> r1" by (auto simp:DomainE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1282
      with assms(1) have "(a, z') \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1283
      moreover from h(1) have "(a, z) \<in> r" by simp 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1284
      ultimately have "z' = z" using sgv by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1285
      from z'_in[unfolded this] and h(1) show False by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1286
   qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1287
  } thus ?thesis by (intro rootI, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1288
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1289
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1290
lemma edge_del_no_rootI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1291
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1292
  shows "root (r - {(a, b)}) a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1293
  by (rule set_del_rootI, insert assms, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1294
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1295
lemma ancestors_children_unique:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1296
  assumes "z1 \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1297
  and "z2 \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1298
  shows "z1 = z2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1299
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1300
  from assms have h:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1301
     "(x, z1) \<in> r^+" "(z1, y) \<in> r" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1302
     "(x, z2) \<in> r^+" "(z2, y) \<in> r" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1303
  by (auto simp:ancestors_def children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1304
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1305
  -- {* From this, a path containing @{text "z1"} is obtained. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1306
  from plus_rpath[OF h(1)] obtain xs1 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1307
     where h1: "rpath r x xs1 z1" "xs1 \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1308
  from rpath_nnl_lastE[OF this] obtain xs1' where eq_xs1: "xs1 = xs1' @ [z1]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1309
    by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1310
  from h(2) have h2: "rpath r z1 [y] y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1311
  from rpath_appendI[OF h1(1) h2, unfolded eq_xs1]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1312
  have rp1: "rpath r x (xs1' @ [z1, y]) y" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1313
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1314
  -- {* Then, another path containing @{text "z2"} is obtained. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1315
  from plus_rpath[OF h(3)] obtain xs2
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1316
     where h3: "rpath r x xs2 z2" "xs2 \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1317
  from rpath_nnl_lastE[OF this] obtain xs2' where eq_xs2: "xs2 = xs2' @ [z2]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1318
    by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1319
  from h(4) have h4: "rpath r z2 [y] y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1320
  from rpath_appendI[OF h3(1) h4, unfolded eq_xs2]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1321
     have "rpath r x (xs2' @ [z2, y]) y" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1322
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1323
  -- {* Finally @{text "z1 = z2"} is proved by uniqueness of path. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1324
  from rpath_unique[OF rp1 this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1325
  have "xs1' @ [z1, y] = xs2' @ [z2, y]" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1326
  thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1327
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1328
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1329
lemma ancestors_childrenE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1330
  assumes "y \<in> ancestors r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1331
  obtains "x \<in> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1332
      | z where "z \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1333
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1334
  from assms(1) have "(x, y) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1335
  from tranclD2[OF this] obtain z where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1336
     h: "(x, z) \<in> r\<^sup>*" "(z, y) \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1337
  from h(1)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1338
  show ?thesis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1339
  proof(cases rule:rtranclE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1340
    case base
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1341
    from h(2)[folded this] have "x \<in> children r y" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1342
              by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1343
    thus ?thesis by (intro that, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1344
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1345
    case (step u)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1346
    hence "z \<in> ancestors r x" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1347
    moreover from h(2) have "z \<in> children r y" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1348
              by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1349
    ultimately show ?thesis by (intro that, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1350
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1351
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1352
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1353
end (* of rtree *)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1354
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1355
lemma subtree_trancl:
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1356
  "subtree r x = {x} \<union> {y. (y, x) \<in> r^+}" (is "?L = ?R")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1357
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1358
  { fix z
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1359
    assume "z \<in> ?L"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1360
    hence "z \<in> ?R"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1361
    proof(cases rule:subtreeE)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1362
      case 2
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1363
      thus ?thesis  
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1364
        by (unfold ancestors_def, auto)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1365
    qed auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1366
  } moreover
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1367
  { fix z
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1368
    assume "z \<in> ?R"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1369
    hence "z \<in> ?L" 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1370
      by (unfold subtree_def, auto)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1371
  } ultimately show ?thesis by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1372
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1373
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1374
lemma ancestor_children_subtreeI [intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1375
  "x \<in> ancestors r z \<Longrightarrow> z \<in> \<Union>(subtree r ` children r x)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1376
  by (unfold ancestors_def children_def, auto simp:subtree_def dest:tranclD2)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1377
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1378
lemma [iff]: "x \<in> subtree r x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1379
  by (auto simp:subtree_def)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1380
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1381
lemma [intro]: "xa \<in> children r x \<Longrightarrow> z \<in> subtree r xa \<Longrightarrow> z \<in> subtree r x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1382
  by (unfold children_def subtree_def, auto)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1383
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1384
lemma subtree_children:
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1385
  "subtree r x = ({x} \<union> (\<Union> (subtree r ` (children r x))))" (is "?L = ?R")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1386
  by fast
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1387
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1388
context fgraph
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1389
begin
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1390
  
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1391
lemma finite_subtree:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1392
  shows "finite (subtree r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1393
proof(induct rule:wf_induct[OF wf])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1394
  case (1 x)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1395
  have "finite (\<Union>(subtree r ` children r x))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1396
  proof(rule finite_Union)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1397
    show "finite (subtree r ` children r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1398
    proof(cases "children r x = {}")
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1399
      case True
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1400
      thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1401
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1402
      case False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1403
      hence "x \<in> Range r" by (auto simp:children_def)
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1404
      from fb 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1405
      have "finite (children r x)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1406
      thus ?thesis by (rule finite_imageI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1407
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1408
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1409
    fix M 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1410
    assume "M \<in> subtree r ` children r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1411
    then obtain y where h: "y \<in> children r x" "M = subtree r y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1412
    hence "(y, x) \<in> r" by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1413
    from 1[rule_format, OF this, folded h(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1414
    show "finite M" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1415
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1416
  thus ?case
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1417
    by (unfold subtree_children finite_Un, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1418
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1419
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1420
end
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1421
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1422
definition "pairself f = (\<lambda>(a, b). (f a, f b))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1423
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1424
definition "rel_map f r = (pairself f ` r)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1425
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1426
lemma rel_mapE: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1427
  assumes "(a, b) \<in> rel_map f r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1428
  obtains c d 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1429
  where "(c, d) \<in> r" "(a, b) = (f c, f d)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1430
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1431
  by (unfold rel_map_def pairself_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1432
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1433
lemma rel_mapI: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1434
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1435
    and "c = f a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1436
    and "d = f b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1437
  shows "(c, d) \<in> rel_map f r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1438
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1439
  by (unfold rel_map_def pairself_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1440
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1441
lemma map_appendE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1442
  assumes "map f zs = xs @ ys"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1443
  obtains xs' ys' 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1444
  where "zs = xs' @ ys'" "xs = map f xs'" "ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1445
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1446
  have "\<exists> xs' ys'. zs = xs' @ ys' \<and> xs = map f xs' \<and> ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1447
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1448
  proof(induct xs arbitrary:zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1449
    case (Nil zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1450
    thus ?case by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1451
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1452
    case (Cons x xs zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1453
    note h = this
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1454
    show ?case
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1455
    proof(cases zs)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1456
      case (Cons e es)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1457
      with h have eq_x: "map f es = xs @ ys" "x = f e" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1458
      from h(1)[OF this(1)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1459
      obtain xs' ys' where "es = xs' @ ys'" "xs = map f xs'" "ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1460
        by blast
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1461
      with Cons eq_x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1462
      have "zs = (e#xs') @ ys' \<and> x # xs = map f (e#xs') \<and> ys = map f ys'" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1463
      thus ?thesis by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1464
    qed (insert h, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1465
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1466
  thus ?thesis by (auto intro!:that)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1467
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1468
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1469
lemma rel_map_mono:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1470
  assumes "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1471
  shows "rel_map f r1 \<subseteq> rel_map f r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1472
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1473
  by (auto simp:rel_map_def pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1474
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1475
lemma rel_map_compose [simp]:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1476
    shows "rel_map f1 (rel_map f2 r) = rel_map (f1 o f2) r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1477
    by (auto simp:rel_map_def pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1478
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1479
lemma edges_on_map: "edges_on (map f xs) = rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1480
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1481
  { fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1482
    assume "(a, b) \<in> edges_on (map f xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1483
    then obtain l1 l2 where eq_map: "map f xs = l1 @ [a, b] @ l2" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1484
      by (unfold edges_on_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1485
    hence "(a, b) \<in> rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1486
      by (auto elim!:map_appendE intro!:rel_mapI simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1487
  } moreover { 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1488
    fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1489
    assume "(a, b) \<in> rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1490
    then obtain c d where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1491
        h: "(c, d) \<in> edges_on xs" "(a, b) = (f c, f d)" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1492
             by (elim rel_mapE, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1493
    then obtain l1 l2 where
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1494
        eq_xs: "xs = l1 @ [c, d] @ l2" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1495
             by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1496
    hence eq_map: "map f xs = map f l1 @ [f c, f d] @ map f l2" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1497
    have "(a, b) \<in> edges_on (map f xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1498
    proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1499
      from h(2) have "[f c, f d] = [a, b]" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1500
      from eq_map[unfolded this] show ?thesis by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1501
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1502
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1503
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1504
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1505
lemma image_id:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1506
  assumes "\<And> x. x \<in> A \<Longrightarrow> f x = x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1507
  shows "f ` A = A"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1508
  using assms by (auto simp:image_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1509
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1510
lemma rel_map_inv_id:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1511
  assumes "inj_on f ((Domain r) \<union> (Range r))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1512
  shows "(rel_map (inv_into ((Domain r) \<union> (Range r)) f \<circ> f) r) = r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1513
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1514
 let ?f = "(inv_into (Domain r \<union> Range r) f \<circ> f)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1515
 {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1516
  fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1517
  assume h0: "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1518
  have "pairself ?f (a, b) = (a, b)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1519
  proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1520
    from assms h0 have "?f a = a" by (auto intro:inv_into_f_f)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1521
    moreover have "?f b = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1522
      by (insert h0, simp, intro inv_into_f_f[OF assms], auto intro!:RangeI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1523
    ultimately show ?thesis by (auto simp:pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1524
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1525
 } thus ?thesis by (unfold rel_map_def, intro image_id, case_tac x, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1526
qed 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1527
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1528
lemma rel_map_acyclic:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1529
  assumes "acyclic r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1530
  and "inj_on f ((Domain r) \<union> (Range r))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1531
  shows "acyclic (rel_map f r)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1532
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1533
  let ?D = "Domain r \<union> Range r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1534
  { fix a 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1535
    assume "(a, a) \<in> (rel_map f r)^+" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1536
    from plus_rpath[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1537
    obtain xs where rp: "rpath (rel_map f r) a xs a" "xs \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1538
    from rpath_nnl_lastE[OF this] obtain xs' where eq_xs: "xs = xs'@[a]" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1539
    from rpath_edges_on[OF rp(1)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1540
    have h: "edges_on (a # xs) \<subseteq> rel_map f r" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1541
    from edges_on_map[of "inv_into ?D f" "a#xs"]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1542
    have "edges_on (map (inv_into ?D f) (a # xs)) = rel_map (inv_into ?D f) (edges_on (a # xs))" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1543
    with rel_map_mono[OF h, of "inv_into ?D f"]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1544
    have "edges_on (map (inv_into ?D f) (a # xs)) \<subseteq> rel_map ((inv_into ?D f) o f) r" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1545
    from this[unfolded eq_xs]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1546
    have subr: "edges_on (map (inv_into ?D f) (a # xs' @ [a])) \<subseteq> rel_map (inv_into ?D f \<circ> f) r" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1547
    have "(map (inv_into ?D f) (a # xs' @ [a])) = (inv_into ?D f a) # map (inv_into ?D f) xs' @ [inv_into ?D f a]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1548
      by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1549
    from edges_on_rpathI[OF subr[unfolded this]]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1550
    have "rpath (rel_map (inv_into ?D f \<circ> f) r) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1551
                      (inv_into ?D f a) (map (inv_into ?D f) xs' @ [inv_into ?D f a]) (inv_into ?D f a)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1552
    hence "(inv_into ?D f a, inv_into ?D f a) \<in> (rel_map (inv_into ?D f \<circ> f) r)^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1553
        by (rule rpath_plus, simp)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1554
    moreover have "(rel_map (inv_into ?D f \<circ> f) r) = r" by (rule rel_map_inv_id[OF assms(2)])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1555
    moreover note assms(1) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1556
    ultimately have False by (unfold acyclic_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1557
  } thus ?thesis by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1558
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1559
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1560
lemma relpow_mult: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1561
  "((r::'a rel) ^^ m) ^^ n = r ^^ (m*n)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1562
proof(induct n arbitrary:m)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1563
  case (Suc k m)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1564
  thus ?case
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1565
  proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1566
    have h: "(m * k + m) = (m + m * k)" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1567
    show ?thesis 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1568
      apply (simp add:Suc relpow_add[symmetric])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1569
      by (unfold h, simp)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1570
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1571
qed simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1572
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1573
lemma compose_relpow_2 [intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1574
  assumes "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1575
  and "r2 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1576
  shows "r1 O r2 \<subseteq> r ^^ (2::nat)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1577
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1578
  { fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1579
    assume "(a, b) \<in> r1 O r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1580
    then obtain e where "(a, e) \<in> r1" "(e, b) \<in> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1581
      by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1582
    with assms have "(a, e) \<in> r" "(e, b) \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1583
    hence "(a, b) \<in> r ^^ (Suc (Suc 0))" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1584
  } thus ?thesis by (auto simp:numeral_2_eq_2)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1585
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1586
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1587
lemma acyclic_compose [intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1588
  assumes "acyclic r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1589
  and "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1590
  and "r2 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1591
  shows "acyclic (r1 O r2)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1592
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1593
  { fix a
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1594
    assume "(a, a) \<in> (r1 O r2)^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1595
    from trancl_mono[OF this compose_relpow_2[OF assms(2, 3)]]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1596
    have "(a, a) \<in> (r ^^ 2) ^+" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1597
    from trancl_power[THEN iffD1, OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1598
    obtain n where h: "(a, a) \<in> (r ^^ 2) ^^ n" "n > 0" by blast
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1599
    from this(1)[unfolded relpow_mult] have h2: "(a, a) \<in> r ^^ (2 * n)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1600
    have "(a, a) \<in> r^+" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1601
    proof(cases rule:trancl_power[THEN iffD2])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1602
      from h(2) h2 show "\<exists>n>0. (a, a) \<in> r ^^ n" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1603
        by (rule_tac x = "2*n" in exI, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1604
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1605
    with assms have "False" by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1606
  } thus ?thesis by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1607
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1608
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1609
lemma children_compose_unfold: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1610
  "children (r1 O r2) x = \<Union> (children r1 ` (children r2 x))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1611
  by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1612
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1613
lemma fbranch_compose [intro, simp]:
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1614
  assumes "\<forall> x \<in> Range r1 . finite (children r1 x)"
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1615
  and "\<forall> x \<in> Range r2 . finite (children r2 x)"
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1616
  shows "\<forall> x \<in> Range (r1 O r2) . finite (children (r1 O r2) x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1617
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1618
  {  fix x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1619
     assume "x\<in>Range (r1 O r2)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1620
     then obtain y z where h: "(y, z) \<in> r1" "(z, x) \<in> r2" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1621
     have "finite (children (r1 O r2) x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1622
     proof(unfold children_compose_unfold, rule finite_Union)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1623
      show "finite (children r1 ` children r2 x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1624
      proof(rule finite_imageI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1625
        from h(2) have "x \<in> Range r2" by auto
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1626
        from assms(2)[unfolded fgraph_def] this
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1627
        show "finite (children r2 x)" by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1628
      qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1629
     next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1630
       fix M
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1631
       assume "M \<in> children r1 ` children r2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1632
       then obtain y where h1: "y \<in> children r2 x" "M = children r1 y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1633
       show "finite M"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1634
       proof(cases "children r1 y = {}")
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1635
          case True
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1636
          with h1(2) show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1637
       next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1638
          case False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1639
          hence "y \<in> Range r1" by (unfold children_def, auto)
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1640
          from assms(1)[unfolded fgraph_def] this h1(2)
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1641
          show ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1642
       qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1643
     qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1644
  } thus ?thesis using assms by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1645
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1646
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1647
lemma fbranch_compose1 [intro, simp]:
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1648
  assumes "\<forall>x. finite (children r1 x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1649
  and "\<forall>x. finite (children r2 x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1650
  shows "\<forall>x. finite (children (r1 O r2) x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1651
by (metis (no_types, lifting) Collect_empty_eq Range.intros assms(1) 
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1652
         assms(2) children_def fbranch_compose finite.emptyI)
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1653
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1654
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1655
lemma finite_fbranchI [intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1656
  assumes "finite r"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1657
  shows "\<forall> x \<in> Range r . finite (children r x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1658
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1659
  { fix x 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1660
    assume "x \<in>Range r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1661
    have "finite (children r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1662
    proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1663
      have "{y. (y, x) \<in> r} \<subseteq> Domain r" by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1664
      from rev_finite_subset[OF finite_Domain[OF assms] this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1665
      have "finite {y. (y, x) \<in> r}" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1666
      thus ?thesis by (unfold children_def, simp)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1667
    qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1668
  } thus ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1669
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1670
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1671
lemma finite_fbranchI1 [intro]:
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1672
  assumes "finite r"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1673
  shows "\<forall> x . finite (children r x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1674
  by (metis (no_types, lifting) Collect_empty_eq Range.intros assms 
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1675
      children_def finite.emptyI finite_fbranchI)
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1676
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1677
lemma subset_fbranchI [intro]:
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1678
  assumes "\<forall> x \<in> Range r1 . finite (children r1 x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1679
  and "r2 \<subseteq> r1"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1680
  shows "\<forall> x \<in> Range r2 . finite (children r2 x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1681
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1682
  { fix x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1683
    assume "x \<in>Range r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1684
    with assms(2) have "x \<in> Range r1" by auto
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1685
    from assms(1)[rule_format, OF this]
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1686
    have "finite (children r1 x)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1687
    hence "finite (children r2 x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1688
    proof(rule rev_finite_subset)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1689
      from assms(2)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1690
      show "children r2 x \<subseteq> children r1 x" by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1691
    qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1692
  } thus ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1693
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1694
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1695
lemma children_subtree [simp, intro]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1696
  shows "children r x \<subseteq> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1697
  by (auto simp:children_def subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1698
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1699
lemma children_union_kept [simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1700
  assumes "x \<notin> Range r'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1701
  shows "children (r \<union> r') x = children r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1702
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1703
  by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1704
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1705
lemma wf_rbase [elim]:
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1706
  assumes "wf r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1707
  obtains b where "(b, a) \<in> r^*" "\<forall> c. (c, b) \<notin> r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1708
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1709
  from assms
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1710
  have "\<exists> b. (b, a) \<in> r^* \<and> (\<forall> c. (c, b) \<notin> r)"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1711
  proof(induct) 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1712
    case (less x)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1713
    thus ?case
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1714
    proof(cases "\<exists> z. (z, x) \<in> r")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1715
      case False
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1716
      moreover have "(x, x) \<in> r^*" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1717
      ultimately show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1718
    next
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1719
      case True
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1720
      then obtain z where h_z: "(z, x) \<in> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1721
      from less[OF this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1722
      obtain b where "(b, z) \<in> r^*" "(\<forall>c. (c, b) \<notin> r)"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1723
        by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1724
      moreover from this(1) h_z have "(b, x) \<in> r^*" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1725
      ultimately show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1726
    qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1727
  qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1728
  with that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1729
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1730
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1731
lemma wf_base [elim]:
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1732
  assumes "wf r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1733
  and "a \<in> Range r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1734
  obtains b where "(b, a) \<in> r^+" "\<forall> c. (c, b) \<notin> r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1735
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1736
  from assms(2) obtain a' where h_a: "(a', a) \<in> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1737
  from wf_rbase[OF assms(1), of a]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1738
  obtain b where h_b: "(b, a) \<in> r\<^sup>*" "\<forall>c. (c, b) \<notin> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1739
  from rtranclD[OF this(1)]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1740
  have "b = a \<or>  b \<noteq> a \<and> (b, a) \<in> r\<^sup>+" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1741
  moreover have "b \<noteq> a" using h_a h_b(2) by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1742
  ultimately have "(b, a) \<in> r\<^sup>+" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1743
  with h_b(2) and that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1744
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1745
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1746
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1747
declare RTree.subtree_transfer[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1748
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1749
declare RTree.subtreeE[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1750
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1751
declare RTree.ancestors_Field[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1752
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1753
declare RTree.star_rpath[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1754
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1755
declare RTree.plus_rpath[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1756
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1757
end