src/HOL/Transitive_Closure.thy
author nipkow
Mon, 01 Jun 2009 10:02:01 +0200
changeset 31351 b8d856545a02
parent 30971 7fbebf75b3ef
child 31576 525073f7aff6
permissions -rw-r--r--
new lemma
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Transitive_Closure.thy
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     3
    Copyright   1992  University of Cambridge
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     4
*)
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     5
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
     6
header {* Reflexive and Transitive closure of a relation *}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15096
diff changeset
     8
theory Transitive_Closure
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
     9
imports Predicate
21589
1b02201d7195 simplified method setup;
wenzelm
parents: 21404
diff changeset
    10
uses "~~/src/Provers/trancl.ML"
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15096
diff changeset
    11
begin
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    12
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    13
text {*
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    14
  @{text rtrancl} is reflexive/transitive closure,
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    15
  @{text trancl} is transitive closure,
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    16
  @{text reflcl} is reflexive closure.
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    17
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    18
  These postfix operators have \emph{maximum priority}, forcing their
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    19
  operands to be atomic.
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    20
*}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    21
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    22
inductive_set
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    23
  rtrancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set"   ("(_^*)" [1000] 999)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    24
  for r :: "('a \<times> 'a) set"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    25
where
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    26
    rtrancl_refl [intro!, Pure.intro!, simp]: "(a, a) : r^*"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    27
  | rtrancl_into_rtrancl [Pure.intro]: "(a, b) : r^* ==> (b, c) : r ==> (a, c) : r^*"
11327
cd2c27a23df1 Transitive closure is now defined via "inductive".
berghofe
parents: 11115
diff changeset
    28
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    29
inductive_set
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    30
  trancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set"  ("(_^+)" [1000] 999)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    31
  for r :: "('a \<times> 'a) set"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    32
where
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    33
    r_into_trancl [intro, Pure.intro]: "(a, b) : r ==> (a, b) : r^+"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    34
  | trancl_into_trancl [Pure.intro]: "(a, b) : r^+ ==> (b, c) : r ==> (a, c) : r^+"
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
    35
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    36
notation
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    37
  rtranclp  ("(_^**)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    38
  tranclp  ("(_^++)" [1000] 1000)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    39
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19623
diff changeset
    40
abbreviation
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    41
  reflclp :: "('a => 'a => bool) => 'a => 'a => bool"  ("(_^==)" [1000] 1000) where
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
    42
  "r^== == sup r op ="
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    43
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    44
abbreviation
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    45
  reflcl :: "('a \<times> 'a) set => ('a \<times> 'a) set"  ("(_^=)" [1000] 999) where
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19623
diff changeset
    46
  "r^= == r \<union> Id"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    47
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20716
diff changeset
    48
notation (xsymbols)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    49
  rtranclp  ("(_\<^sup>*\<^sup>*)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    50
  tranclp  ("(_\<^sup>+\<^sup>+)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    51
  reflclp  ("(_\<^sup>=\<^sup>=)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    52
  rtrancl  ("(_\<^sup>*)" [1000] 999) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    53
  trancl  ("(_\<^sup>+)" [1000] 999) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    54
  reflcl  ("(_\<^sup>=)" [1000] 999)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    55
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20716
diff changeset
    56
notation (HTML output)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    57
  rtranclp  ("(_\<^sup>*\<^sup>*)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    58
  tranclp  ("(_\<^sup>+\<^sup>+)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    59
  reflclp  ("(_\<^sup>=\<^sup>=)" [1000] 1000) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    60
  rtrancl  ("(_\<^sup>*)" [1000] 999) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    61
  trancl  ("(_\<^sup>+)" [1000] 999) and
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    62
  reflcl  ("(_\<^sup>=)" [1000] 999)
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 14404
diff changeset
    63
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    64
26271
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    65
subsection {* Reflexive closure *}
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    66
30198
922f944f03b2 name changes
nipkow
parents: 30107
diff changeset
    67
lemma refl_reflcl[simp]: "refl(r^=)"
922f944f03b2 name changes
nipkow
parents: 30107
diff changeset
    68
by(simp add:refl_on_def)
26271
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    69
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    70
lemma antisym_reflcl[simp]: "antisym(r^=) = antisym r"
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    71
by(simp add:antisym_def)
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    72
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    73
lemma trans_reflclI[simp]: "trans r \<Longrightarrow> trans(r^=)"
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    74
unfolding trans_def by blast
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    75
e324f8918c98 Added lemmas
nipkow
parents: 26179
diff changeset
    76
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    77
subsection {* Reflexive-transitive closure *}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    78
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    79
lemma reflcl_set_eq [pred_set_conv]: "(sup (\<lambda>x y. (x, y) \<in> r) op =) = (\<lambda>x y. (x, y) \<in> r Un Id)"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    80
  by (simp add: expand_fun_eq)
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    81
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    82
lemma r_into_rtrancl [intro]: "!!p. p \<in> r ==> p \<in> r^*"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    83
  -- {* @{text rtrancl} of @{text r} contains @{text r} *}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    84
  apply (simp only: split_tupled_all)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    85
  apply (erule rtrancl_refl [THEN rtrancl_into_rtrancl])
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    86
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    87
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    88
lemma r_into_rtranclp [intro]: "r x y ==> r^** x y"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    89
  -- {* @{text rtrancl} of @{text r} contains @{text r} *}
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    90
  by (erule rtranclp.rtrancl_refl [THEN rtranclp.rtrancl_into_rtrancl])
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    91
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    92
lemma rtranclp_mono: "r \<le> s ==> r^** \<le> s^**"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    93
  -- {* monotonicity of @{text rtrancl} *}
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
    94
  apply (rule predicate2I)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    95
  apply (erule rtranclp.induct)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    96
   apply (rule_tac [2] rtranclp.rtrancl_into_rtrancl, blast+)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    97
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
    98
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
    99
lemmas rtrancl_mono = rtranclp_mono [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   100
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   101
theorem rtranclp_induct [consumes 1, case_names base step, induct set: rtranclp]:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   102
  assumes a: "r^** a b"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   103
    and cases: "P a" "!!y z. [| r^** a y; r y z; P y |] ==> P z"
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12823
diff changeset
   104
  shows "P b"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   105
proof -
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   106
  from a have "a = a --> P b"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16514
diff changeset
   107
    by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   108
  then show ?thesis by iprover
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   109
qed
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   110
25425
9191942c4ead Removed some case_names and consumes attributes that are now no longer
berghofe
parents: 25295
diff changeset
   111
lemmas rtrancl_induct [induct set: rtrancl] = rtranclp_induct [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   112
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   113
lemmas rtranclp_induct2 =
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   114
  rtranclp_induct[of _ "(ax,ay)" "(bx,by)", split_rule,
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   115
                 consumes 1, case_names refl step]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   116
14404
4952c5a92e04 Transitive_Closure: added consumes and case_names attributes
nipkow
parents: 14398
diff changeset
   117
lemmas rtrancl_induct2 =
4952c5a92e04 Transitive_Closure: added consumes and case_names attributes
nipkow
parents: 14398
diff changeset
   118
  rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete),
4952c5a92e04 Transitive_Closure: added consumes and case_names attributes
nipkow
parents: 14398
diff changeset
   119
                 consumes 1, case_names refl step]
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   120
30198
922f944f03b2 name changes
nipkow
parents: 30107
diff changeset
   121
lemma refl_rtrancl: "refl (r^*)"
922f944f03b2 name changes
nipkow
parents: 30107
diff changeset
   122
by (unfold refl_on_def) fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   123
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   124
text {* Transitivity of transitive closure. *}
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   125
lemma trans_rtrancl: "trans (r^*)"
12823
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   126
proof (rule transI)
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   127
  fix x y z
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   128
  assume "(x, y) \<in> r\<^sup>*"
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   129
  assume "(y, z) \<in> r\<^sup>*"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   130
  then show "(x, z) \<in> r\<^sup>*"
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   131
  proof induct
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   132
    case base
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   133
    show "(x, y) \<in> r\<^sup>*" by fact
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   134
  next
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   135
    case (step u v)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   136
    from `(x, u) \<in> r\<^sup>*` and `(u, v) \<in> r`
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   137
    show "(x, v) \<in> r\<^sup>*" ..
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   138
  qed
12823
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   139
qed
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   140
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   141
lemmas rtrancl_trans = trans_rtrancl [THEN transD, standard]
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   142
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   143
lemma rtranclp_trans:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   144
  assumes xy: "r^** x y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   145
  and yz: "r^** y z"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   146
  shows "r^** x z" using yz xy
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   147
  by induct iprover+
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   148
26174
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   149
lemma rtranclE [cases set: rtrancl]:
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   150
  assumes major: "(a::'a, b) : r^*"
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   151
  obtains
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   152
    (base) "a = b"
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   153
  | (step) y where "(a, y) : r^*" and "(y, b) : r"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   154
  -- {* elimination of @{text rtrancl} -- by induction on a special formula *}
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   155
  apply (subgoal_tac "(a::'a) = b | (EX y. (a,y) : r^* & (y,b) : r)")
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   156
   apply (rule_tac [2] major [THEN rtrancl_induct])
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   157
    prefer 2 apply blast
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   158
   prefer 2 apply blast
26174
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   159
  apply (erule asm_rl exE disjE conjE base step)+
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   160
  done
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   161
22080
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   162
lemma rtrancl_Int_subset: "[| Id \<subseteq> s; r O (r^* \<inter> s) \<subseteq> s|] ==> r^* \<subseteq> s"
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   163
  apply (rule subsetI)
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   164
  apply (rule_tac p="x" in PairE, clarify)
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   165
  apply (erule rtrancl_induct, auto) 
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   166
  done
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   167
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   168
lemma converse_rtranclp_into_rtranclp:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   169
  "r a b \<Longrightarrow> r\<^sup>*\<^sup>* b c \<Longrightarrow> r\<^sup>*\<^sup>* a c"
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   170
  by (rule rtranclp_trans) iprover+
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   171
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   172
lemmas converse_rtrancl_into_rtrancl = converse_rtranclp_into_rtranclp [to_set]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   173
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   174
text {*
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   175
  \medskip More @{term "r^*"} equations and inclusions.
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   176
*}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   177
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   178
lemma rtranclp_idemp [simp]: "(r^**)^** = r^**"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   179
  apply (auto intro!: order_antisym)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   180
  apply (erule rtranclp_induct)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   181
   apply (rule rtranclp.rtrancl_refl)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   182
  apply (blast intro: rtranclp_trans)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   183
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   184
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   185
lemmas rtrancl_idemp [simp] = rtranclp_idemp [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   186
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   187
lemma rtrancl_idemp_self_comp [simp]: "R^* O R^* = R^*"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   188
  apply (rule set_ext)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   189
  apply (simp only: split_tupled_all)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   190
  apply (blast intro: rtrancl_trans)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   191
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   192
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   193
lemma rtrancl_subset_rtrancl: "r \<subseteq> s^* ==> r^* \<subseteq> s^*"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   194
  apply (drule rtrancl_mono)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   195
  apply simp
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   196
  done
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   197
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   198
lemma rtranclp_subset: "R \<le> S ==> S \<le> R^** ==> S^** = R^**"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   199
  apply (drule rtranclp_mono)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   200
  apply (drule rtranclp_mono)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   201
  apply simp
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   202
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   203
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   204
lemmas rtrancl_subset = rtranclp_subset [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   205
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   206
lemma rtranclp_sup_rtranclp: "(sup (R^**) (S^**))^** = (sup R S)^**"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   207
  by (blast intro!: rtranclp_subset intro: rtranclp_mono [THEN predicate2D])
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   208
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   209
lemmas rtrancl_Un_rtrancl = rtranclp_sup_rtranclp [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   210
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   211
lemma rtranclp_reflcl [simp]: "(R^==)^** = R^**"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   212
  by (blast intro!: rtranclp_subset)
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   213
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   214
lemmas rtrancl_reflcl [simp] = rtranclp_reflcl [to_set]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   215
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   216
lemma rtrancl_r_diff_Id: "(r - Id)^* = r^*"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   217
  apply (rule sym)
14208
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   218
  apply (rule rtrancl_subset, blast, clarify)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   219
  apply (rename_tac a b)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   220
  apply (case_tac "a = b")
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   221
   apply blast
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   222
  apply (blast intro!: r_into_rtrancl)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   223
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   224
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   225
lemma rtranclp_r_diff_Id: "(inf r op ~=)^** = r^**"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   226
  apply (rule sym)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   227
  apply (rule rtranclp_subset)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   228
   apply blast+
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   229
  done
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   230
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   231
theorem rtranclp_converseD:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   232
  assumes r: "(r^--1)^** x y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   233
  shows "r^** y x"
12823
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   234
proof -
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   235
  from r show ?thesis
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   236
    by induct (iprover intro: rtranclp_trans dest!: conversepD)+
12823
9d3f5056296b Made some proofs constructive.
berghofe
parents: 12691
diff changeset
   237
qed
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   238
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   239
lemmas rtrancl_converseD = rtranclp_converseD [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   240
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   241
theorem rtranclp_converseI:
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   242
  assumes "r^** y x"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   243
  shows "(r^--1)^** x y"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   244
  using assms
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   245
  by induct (iprover intro: rtranclp_trans conversepI)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   246
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   247
lemmas rtrancl_converseI = rtranclp_converseI [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   248
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   249
lemma rtrancl_converse: "(r^-1)^* = (r^*)^-1"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   250
  by (fast dest!: rtrancl_converseD intro!: rtrancl_converseI)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   251
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   252
lemma sym_rtrancl: "sym r ==> sym (r^*)"
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   253
  by (simp only: sym_conv_converse_eq rtrancl_converse [symmetric])
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   254
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   255
theorem converse_rtranclp_induct[consumes 1]:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   256
  assumes major: "r^** a b"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   257
    and cases: "P b" "!!y z. [| r y z; r^** z b; P z |] ==> P y"
12937
0c4fd7529467 clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents: 12823
diff changeset
   258
  shows "P a"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   259
  using rtranclp_converseI [OF major]
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   260
  by induct (iprover intro: cases dest!: conversepD rtranclp_converseD)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   261
25425
9191942c4ead Removed some case_names and consumes attributes that are now no longer
berghofe
parents: 25295
diff changeset
   262
lemmas converse_rtrancl_induct = converse_rtranclp_induct [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   263
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   264
lemmas converse_rtranclp_induct2 =
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   265
  converse_rtranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule,
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   266
                 consumes 1, case_names refl step]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   267
14404
4952c5a92e04 Transitive_Closure: added consumes and case_names attributes
nipkow
parents: 14398
diff changeset
   268
lemmas converse_rtrancl_induct2 =
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   269
  converse_rtrancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete),
14404
4952c5a92e04 Transitive_Closure: added consumes and case_names attributes
nipkow
parents: 14398
diff changeset
   270
                 consumes 1, case_names refl step]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   271
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   272
lemma converse_rtranclpE:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   273
  assumes major: "r^** x z"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   274
    and cases: "x=z ==> P"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   275
      "!!y. [| r x y; r^** y z |] ==> P"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   276
  shows P
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   277
  apply (subgoal_tac "x = z | (EX y. r x y & r^** y z)")
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   278
   apply (rule_tac [2] major [THEN converse_rtranclp_induct])
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   279
    prefer 2 apply iprover
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   280
   prefer 2 apply iprover
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   281
  apply (erule asm_rl exE disjE conjE cases)+
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   282
  done
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   283
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   284
lemmas converse_rtranclE = converse_rtranclpE [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   285
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   286
lemmas converse_rtranclpE2 = converse_rtranclpE [of _ "(xa,xb)" "(za,zb)", split_rule]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   287
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   288
lemmas converse_rtranclE2 = converse_rtranclE [of "(xa,xb)" "(za,zb)", split_rule]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   289
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   290
lemma r_comp_rtrancl_eq: "r O r^* = r^* O r"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   291
  by (blast elim: rtranclE converse_rtranclE
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   292
    intro: rtrancl_into_rtrancl converse_rtrancl_into_rtrancl)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   293
20716
a6686a8e1b68 Changed precedence of "op O" (relation composition) from 60 to 75.
krauss
parents: 19656
diff changeset
   294
lemma rtrancl_unfold: "r^* = Id Un r O r^*"
15551
af78481b37bf unfold theorems for trancl and rtrancl
paulson
parents: 15531
diff changeset
   295
  by (auto intro: rtrancl_into_rtrancl elim: rtranclE)
af78481b37bf unfold theorems for trancl and rtrancl
paulson
parents: 15531
diff changeset
   296
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   297
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   298
subsection {* Transitive closure *}
10331
7411e4659d4a more "xsymbols" syntax;
wenzelm
parents: 10213
diff changeset
   299
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   300
lemma trancl_mono: "!!p. p \<in> r^+ ==> r \<subseteq> s ==> p \<in> s^+"
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   301
  apply (simp add: split_tupled_all)
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   302
  apply (erule trancl.induct)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   303
   apply (iprover dest: subsetD)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   304
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   305
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   306
lemma r_into_trancl': "!!p. p : r ==> p : r^+"
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   307
  by (simp only: split_tupled_all) (erule r_into_trancl)
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   308
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   309
text {*
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   310
  \medskip Conversions between @{text trancl} and @{text rtrancl}.
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   311
*}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   312
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   313
lemma tranclp_into_rtranclp: "r^++ a b ==> r^** a b"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   314
  by (erule tranclp.induct) iprover+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   315
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   316
lemmas trancl_into_rtrancl = tranclp_into_rtranclp [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   317
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   318
lemma rtranclp_into_tranclp1: assumes r: "r^** a b"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   319
  shows "!!c. r b c ==> r^++ a c" using r
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16514
diff changeset
   320
  by induct iprover+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   321
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   322
lemmas rtrancl_into_trancl1 = rtranclp_into_tranclp1 [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   323
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   324
lemma rtranclp_into_tranclp2: "[| r a b; r^** b c |] ==> r^++ a c"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   325
  -- {* intro rule from @{text r} and @{text rtrancl} *}
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   326
  apply (erule rtranclp.cases)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   327
   apply iprover
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   328
  apply (rule rtranclp_trans [THEN rtranclp_into_tranclp1])
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   329
    apply (simp | rule r_into_rtranclp)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   330
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   331
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   332
lemmas rtrancl_into_trancl2 = rtranclp_into_tranclp2 [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   333
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   334
text {* Nice induction rule for @{text trancl} *}
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   335
lemma tranclp_induct [consumes 1, case_names base step, induct pred: tranclp]:
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   336
  assumes "r^++ a b"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   337
  and cases: "!!y. r a y ==> P y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   338
    "!!y z. r^++ a y ==> r y z ==> P y ==> P z"
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   339
  shows "P b"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   340
proof -
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   341
  from `r^++ a b` have "a = a --> P b"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16514
diff changeset
   342
    by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   343
  then show ?thesis by iprover
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   344
qed
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   345
25425
9191942c4ead Removed some case_names and consumes attributes that are now no longer
berghofe
parents: 25295
diff changeset
   346
lemmas trancl_induct [induct set: trancl] = tranclp_induct [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   347
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   348
lemmas tranclp_induct2 =
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   349
  tranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule,
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   350
    consumes 1, case_names base step]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   351
22172
e7d6cb237b5e some new lemmas
paulson
parents: 22080
diff changeset
   352
lemmas trancl_induct2 =
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   353
  trancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete),
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   354
    consumes 1, case_names base step]
22172
e7d6cb237b5e some new lemmas
paulson
parents: 22080
diff changeset
   355
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   356
lemma tranclp_trans_induct:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   357
  assumes major: "r^++ x y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   358
    and cases: "!!x y. r x y ==> P x y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   359
      "!!x y z. [| r^++ x y; P x y; r^++ y z; P y z |] ==> P x z"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   360
  shows "P x y"
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   361
  -- {* Another induction rule for trancl, incorporating transitivity *}
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   362
  by (iprover intro: major [THEN tranclp_induct] cases)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   363
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   364
lemmas trancl_trans_induct = tranclp_trans_induct [to_set]
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   365
26174
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   366
lemma tranclE [cases set: trancl]:
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   367
  assumes "(a, b) : r^+"
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   368
  obtains
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   369
    (base) "(a, b) : r"
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   370
  | (step) c where "(a, c) : r^+" and "(c, b) : r"
9efd4c04eaa4 rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents: 25425
diff changeset
   371
  using assms by cases simp_all
10980
0a45f2efaaec Transitive_Closure turned into new-style theory;
wenzelm
parents: 10827
diff changeset
   372
22080
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   373
lemma trancl_Int_subset: "[| r \<subseteq> s; r O (r^+ \<inter> s) \<subseteq> s|] ==> r^+ \<subseteq> s"
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   374
  apply (rule subsetI)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   375
  apply (rule_tac p = x in PairE)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   376
  apply clarify
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   377
  apply (erule trancl_induct)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   378
   apply auto
22080
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   379
  done
7bf8868ab3e4 induction rules for trancl/rtrancl expressed using subsets
paulson
parents: 21589
diff changeset
   380
20716
a6686a8e1b68 Changed precedence of "op O" (relation composition) from 60 to 75.
krauss
parents: 19656
diff changeset
   381
lemma trancl_unfold: "r^+ = r Un r O r^+"
15551
af78481b37bf unfold theorems for trancl and rtrancl
paulson
parents: 15531
diff changeset
   382
  by (auto intro: trancl_into_trancl elim: tranclE)
af78481b37bf unfold theorems for trancl and rtrancl
paulson
parents: 15531
diff changeset
   383
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   384
text {* Transitivity of @{term "r^+"} *}
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   385
lemma trans_trancl [simp]: "trans (r^+)"
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   386
proof (rule transI)
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   387
  fix x y z
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   388
  assume "(x, y) \<in> r^+"
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   389
  assume "(y, z) \<in> r^+"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   390
  then show "(x, z) \<in> r^+"
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   391
  proof induct
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   392
    case (base u)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   393
    from `(x, y) \<in> r^+` and `(y, u) \<in> r`
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   394
    show "(x, u) \<in> r^+" ..
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   395
  next
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   396
    case (step u v)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   397
    from `(x, u) \<in> r^+` and `(u, v) \<in> r`
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   398
    show "(x, v) \<in> r^+" ..
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   399
  qed
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   400
qed
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   401
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   402
lemmas trancl_trans = trans_trancl [THEN transD, standard]
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   403
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   404
lemma tranclp_trans:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   405
  assumes xy: "r^++ x y"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   406
  and yz: "r^++ y z"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   407
  shows "r^++ x z" using yz xy
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   408
  by induct iprover+
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   409
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   410
lemma trancl_id [simp]: "trans r \<Longrightarrow> r^+ = r"
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   411
  apply auto
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   412
  apply (erule trancl_induct)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   413
   apply assumption
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   414
  apply (unfold trans_def)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   415
  apply blast
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   416
  done
19623
12e6cc4382ae added lemma in_measure
nipkow
parents: 19228
diff changeset
   417
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   418
lemma rtranclp_tranclp_tranclp:
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   419
  assumes "r^** x y"
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   420
  shows "!!z. r^++ y z ==> r^++ x z" using assms
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   421
  by induct (iprover intro: tranclp_trans)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   422
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   423
lemmas rtrancl_trancl_trancl = rtranclp_tranclp_tranclp [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   424
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   425
lemma tranclp_into_tranclp2: "r a b ==> r^++ b c ==> r^++ a c"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   426
  by (erule tranclp_trans [OF tranclp.r_into_trancl])
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   427
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   428
lemmas trancl_into_trancl2 = tranclp_into_tranclp2 [to_set]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   429
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   430
lemma trancl_insert:
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   431
  "(insert (y, x) r)^+ = r^+ \<union> {(a, b). (a, y) \<in> r^* \<and> (x, b) \<in> r^*}"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   432
  -- {* primitive recursion for @{text trancl} over finite relations *}
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   433
  apply (rule equalityI)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   434
   apply (rule subsetI)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   435
   apply (simp only: split_tupled_all)
14208
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   436
   apply (erule trancl_induct, blast)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   437
   apply (blast intro: rtrancl_into_trancl1 trancl_into_rtrancl r_into_trancl trancl_trans)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   438
  apply (rule subsetI)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   439
  apply (blast intro: trancl_mono rtrancl_mono
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   440
    [THEN [2] rev_subsetD] rtrancl_trancl_trancl rtrancl_into_trancl2)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   441
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   442
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   443
lemma tranclp_converseI: "(r^++)^--1 x y ==> (r^--1)^++ x y"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   444
  apply (drule conversepD)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   445
  apply (erule tranclp_induct)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   446
  apply (iprover intro: conversepI tranclp_trans)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   447
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   448
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   449
lemmas trancl_converseI = tranclp_converseI [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   450
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   451
lemma tranclp_converseD: "(r^--1)^++ x y ==> (r^++)^--1 x y"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   452
  apply (rule conversepI)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   453
  apply (erule tranclp_induct)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   454
  apply (iprover dest: conversepD intro: tranclp_trans)+
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   455
  done
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   456
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   457
lemmas trancl_converseD = tranclp_converseD [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   458
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   459
lemma tranclp_converse: "(r^--1)^++ = (r^++)^--1"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   460
  by (fastsimp simp add: expand_fun_eq
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   461
    intro!: tranclp_converseI dest!: tranclp_converseD)
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   462
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   463
lemmas trancl_converse = tranclp_converse [to_set]
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   464
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   465
lemma sym_trancl: "sym r ==> sym (r^+)"
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   466
  by (simp only: sym_conv_converse_eq trancl_converse [symmetric])
30fce6da8cbe added many simple lemmas
huffman
parents: 18372
diff changeset
   467
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   468
lemma converse_tranclp_induct:
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   469
  assumes major: "r^++ a b"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   470
    and cases: "!!y. r y b ==> P(y)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   471
      "!!y z.[| r y z;  r^++ z b;  P(z) |] ==> P(y)"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   472
  shows "P a"
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   473
  apply (rule tranclp_induct [OF tranclp_converseI, OF conversepI, OF major])
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   474
   apply (rule cases)
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   475
   apply (erule conversepD)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   476
  apply (blast intro: prems dest!: tranclp_converseD conversepD)
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   477
  done
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   478
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   479
lemmas converse_trancl_induct = converse_tranclp_induct [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   480
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   481
lemma tranclpD: "R^++ x y ==> EX z. R x z \<and> R^** z y"
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   482
  apply (erule converse_tranclp_induct)
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   483
   apply auto
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   484
  apply (blast intro: rtranclp_trans)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   485
  done
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   486
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   487
lemmas tranclD = tranclpD [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   488
25295
12985023be5e tranclD2 (tranclD at the other end) + trancl_power
kleing
parents: 23743
diff changeset
   489
lemma tranclD2:
12985023be5e tranclD2 (tranclD at the other end) + trancl_power
kleing
parents: 23743
diff changeset
   490
  "(x, y) \<in> R\<^sup>+ \<Longrightarrow> \<exists>z. (x, z) \<in> R\<^sup>* \<and> (z, y) \<in> R"
12985023be5e tranclD2 (tranclD at the other end) + trancl_power
kleing
parents: 23743
diff changeset
   491
  by (blast elim: tranclE intro: trancl_into_rtrancl)
12985023be5e tranclD2 (tranclD at the other end) + trancl_power
kleing
parents: 23743
diff changeset
   492
13867
1fdecd15437f just a few mods to a few thms
nipkow
parents: 13726
diff changeset
   493
lemma irrefl_tranclI: "r^-1 \<inter> r^* = {} ==> (x, x) \<notin> r^+"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   494
  by (blast elim: tranclE dest: trancl_into_rtrancl)
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   495
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   496
lemma irrefl_trancl_rD: "!!X. ALL x. (x, x) \<notin> r^+ ==> (x, y) \<in> r ==> x \<noteq> y"
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   497
  by (blast dest: r_into_trancl)
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   498
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   499
lemma trancl_subset_Sigma_aux:
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   500
    "(a, b) \<in> r^* ==> r \<subseteq> A \<times> A ==> a = b \<or> a \<in> A"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 17876
diff changeset
   501
  by (induct rule: rtrancl_induct) auto
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   502
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   503
lemma trancl_subset_Sigma: "r \<subseteq> A \<times> A ==> r^+ \<subseteq> A \<times> A"
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   504
  apply (rule subsetI)
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   505
  apply (simp only: split_tupled_all)
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 12937
diff changeset
   506
  apply (erule tranclE)
26179
bc5d582d6cfe rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents: 26174
diff changeset
   507
   apply (blast dest!: trancl_into_rtrancl trancl_subset_Sigma_aux)+
12691
d21db58bcdc2 converted theory Transitive_Closure;
wenzelm
parents: 12566
diff changeset
   508
  done
10996
74e970389def Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents: 10980
diff changeset
   509
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   510
lemma reflcl_tranclp [simp]: "(r^++)^== = r^**"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   511
  apply (safe intro!: order_antisym)
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   512
   apply (erule tranclp_into_rtranclp)
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   513
  apply (blast elim: rtranclp.cases dest: rtranclp_into_tranclp1)
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   514
  done
10996
74e970389def Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents: 10980
diff changeset
   515
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   516
lemmas reflcl_trancl [simp] = reflcl_tranclp [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22172
diff changeset
   517
11090
wenzelm
parents: 11084
diff changeset
   518
lemma trancl_reflcl [simp]: "(r^=)^+ = r^*"
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   519
  apply safe
14208
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   520
   apply (drule trancl_into_rtrancl, simp)
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   521
  apply (erule rtranclE, safe)
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   522
   apply (rule r_into_trancl, simp)
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   523
  apply (rule rtrancl_into_trancl1)
14208
144f45277d5a misc tidying
paulson
parents: 13867
diff changeset
   524
   apply (erule rtrancl_reflcl [THEN equalityD2, THEN subsetD], fast)
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   525
  done
10996
74e970389def Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents: 10980
diff changeset
   526
11090
wenzelm
parents: 11084
diff changeset
   527
lemma trancl_empty [simp]: "{}^+ = {}"
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   528
  by (auto elim: trancl_induct)
10996
74e970389def Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents: 10980
diff changeset
   529
11090
wenzelm
parents: 11084
diff changeset
   530
lemma rtrancl_empty [simp]: "{}^* = Id"
11084
32c1deea5bcd unsymbolized;
wenzelm
parents: 10996
diff changeset
   531
  by (rule subst [OF reflcl_trancl]) simp
10996
74e970389def Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents: 10980
diff changeset
   532
23743
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   533
lemma rtranclpD: "R^** a b ==> a = b \<or> a \<noteq> b \<and> R^++ a b"
52fbc991039f rtrancl and trancl are now defined using inductive_set.
berghofe
parents: 22422
diff changeset
   534
  by (force simp add: reflcl_tranclp [symmetric] simp del: reflcl_tranclp)