src/HOL/Lambda/ListOrder.thy
author berghofe
Wed, 11 Jul 2007 11:23:24 +0200
changeset 23750 a1db5f819d00
parent 23464 bc2563c37b1a
child 36862 952b2b102a0a
permissions -rw-r--r--
- Renamed inductive2 to inductive - Renamed some theorems about transitive closure for predicates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5261
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Lambda/ListOrder.thy
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     2
    ID:         $Id$
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     3
    Author:     Tobias Nipkow
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     4
    Copyright   1998 TU Muenchen
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     5
*)
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
     6
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
     7
header {* Lifting an order to lists of elements *}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
     8
19564
d3e2f532459a First usable version of the new function definition package (HOL/function_packake/...).
krauss
parents: 19086
diff changeset
     9
theory ListOrder imports Main begin
5261
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
    10
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    11
text {*
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    12
  Lifting an order to lists of elements, relating exactly one
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    13
  element.
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    14
*}
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
    15
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18257
diff changeset
    16
definition
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    17
  step1 :: "('a => 'a => bool) => 'a list => 'a list => bool" where
19086
1b3780be6cc2 new-style definitions/abbreviations;
wenzelm
parents: 18257
diff changeset
    18
  "step1 r =
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    19
    (\<lambda>ys xs. \<exists>us z z' vs. xs = us @ z # vs \<and> r z' z \<and> ys =
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    20
      us @ z' # vs)"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    21
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    22
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    23
lemma step1_converse [simp]: "step1 (r^--1) = (step1 r)^--1"
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    24
  apply (unfold step1_def)
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    25
  apply (blast intro!: order_antisym)
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    26
  done
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    27
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    28
lemma in_step1_converse [iff]: "(step1 (r^--1) x y) = ((step1 r)^--1 x y)"
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    29
  apply auto
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    30
  done
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    31
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    32
lemma not_Nil_step1 [iff]: "\<not> step1 r [] xs"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    33
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    34
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    35
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    36
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    37
lemma not_step1_Nil [iff]: "\<not> step1 r xs []"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    38
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    39
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    40
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    41
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    42
lemma Cons_step1_Cons [iff]:
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    43
    "(step1 r (y # ys) (x # xs)) =
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    44
      (r y x \<and> xs = ys \<or> x = y \<and> step1 r ys xs)"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    45
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    46
  apply (rule iffI)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    47
   apply (erule exE)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    48
   apply (rename_tac ts)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    49
   apply (case_tac ts)
13601
fd3e3d6b37b2 Adapted to new simplifier.
berghofe
parents: 11639
diff changeset
    50
    apply fastsimp
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    51
   apply force
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    52
  apply (erule disjE)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    53
   apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    54
  apply (blast intro: Cons_eq_appendI)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    55
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    56
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    57
lemma append_step1I:
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    58
  "step1 r ys xs \<and> vs = us \<or> ys = xs \<and> step1 r vs us
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    59
    ==> step1 r (ys @ vs) (xs @ us)"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    60
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    61
  apply auto
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    62
   apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    63
  apply (blast intro: append_eq_appendI)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    64
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    65
18257
2124b24454dd tuned induct proofs;
wenzelm
parents: 18241
diff changeset
    66
lemma Cons_step1E [elim!]:
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    67
  assumes "step1 r ys (x # xs)"
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    68
    and "!!y. ys = y # xs \<Longrightarrow> r y x \<Longrightarrow> R"
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    69
    and "!!zs. ys = x # zs \<Longrightarrow> step1 r zs xs \<Longrightarrow> R"
18257
2124b24454dd tuned induct proofs;
wenzelm
parents: 18241
diff changeset
    70
  shows R
23464
bc2563c37b1a tuned proofs -- avoid implicit prems;
wenzelm
parents: 22270
diff changeset
    71
  using assms
18257
2124b24454dd tuned induct proofs;
wenzelm
parents: 18241
diff changeset
    72
  apply (cases ys)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    73
   apply (simp add: step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    74
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    75
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    76
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    77
lemma Snoc_step1_SnocD:
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    78
  "step1 r (ys @ [y]) (xs @ [x])
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    79
    ==> (step1 r ys xs \<and> y = x \<or> ys = xs \<and> r y x)"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    80
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    81
  apply (clarify del: disjCI)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    82
  apply (rename_tac vs)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    83
  apply (rule_tac xs = vs in rev_exhaust)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    84
   apply force
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    85
  apply simp
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    86
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    87
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    88
18241
afdba6b3e383 tuned induction proofs;
wenzelm
parents: 16417
diff changeset
    89
lemma Cons_acc_step1I [intro!]:
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
    90
    "accp r x ==> accp (step1 r) xs \<Longrightarrow> accp (step1 r) (x # xs)"
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
    91
  apply (induct arbitrary: xs set: accp)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    92
  apply (erule thin_rl)
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
    93
  apply (erule accp_induct)
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
    94
  apply (rule accp.accI)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    95
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    96
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
    97
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
    98
lemma lists_accD: "listsp (accp r) xs ==> accp (step1 r) xs"
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
    99
  apply (induct set: listsp)
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   100
   apply (rule accp.accI)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   101
   apply simp
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   102
  apply (rule accp.accI)
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   103
  apply (fast dest: accp_downward)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   104
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   105
9811
39ffdb8cab03 HOL/Lambda: converted into new-style theory and document;
wenzelm
parents: 9771
diff changeset
   106
lemma ex_step1I:
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
   107
  "[| x \<in> set xs; r y x |]
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
   108
    ==> \<exists>ys. step1 r ys xs \<and> y \<in> set ys"
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   109
  apply (unfold step1_def)
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   110
  apply (drule in_set_conv_decomp [THEN iffD1])
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   111
  apply force
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   112
  done
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   113
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   114
lemma lists_accI: "accp (step1 r) xs ==> listsp (accp r) xs"
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   115
  apply (induct set: accp)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   116
  apply clarify
23750
a1db5f819d00 - Renamed inductive2 to inductive
berghofe
parents: 23464
diff changeset
   117
  apply (rule accp.accI)
22270
4ccb7e6be929 Converted to predicate notation.
berghofe
parents: 21404
diff changeset
   118
  apply (drule_tac r=r in ex_step1I, assumption)
9771
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   119
  apply blast
54c6a2c6e569 converted Lambda scripts;
wenzelm
parents: 9102
diff changeset
   120
  done
5261
ce3c25c8a694 First steps towards termination of simply typed terms.
nipkow
parents:
diff changeset
   121
11639
wenzelm
parents: 10264
diff changeset
   122
end