src/HOL/ex/Recdefs.thy
author oheimb
Thu, 01 Feb 2001 20:51:48 +0100
changeset 11025 a70b796d9af8
parent 11024 23bf8d787b04
child 11626 0dbfb578bf75
permissions -rw-r--r--
converted to Isar therory, adding attributes complete_split and split_format
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6481
dbf2d9b3d6c8 recdef requires theory Recdef;
wenzelm
parents: 6455
diff changeset
     1
(*  Title:      HOL/ex/Recdefs.thy
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     3
    Author:     Konrad Slind and Lawrence C Paulson
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     5
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     6
Examples of recdef definitions.  Most, but not all, are handled automatically.
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     7
*)
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
     8
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
     9
header {* Examples of recdef definitions *}
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    10
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    11
theory Recdefs = Main:
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    12
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    13
consts fact :: "nat => nat"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    14
recdef fact  less_than
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    15
  "fact x = (if x = 0 then 1 else x * fact (x - 1))"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    16
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    17
consts Fact :: "nat => nat"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    18
recdef Fact  less_than
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    19
  "Fact 0 = 1"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    20
  "Fact (Suc x) = Fact x * Suc x"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    21
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    22
consts map2 :: "('a => 'b => 'c) * 'a list * 'b list => 'c list"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    23
recdef map2  "measure(\<lambda>(f, l1, l2). size l1)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    24
  "map2 (f, [], [])  = []"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    25
  "map2 (f, h # t, []) = []"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    26
  "map2 (f, h1 # t1, h2 # t2) = f h1 h2 # map2 (f, t1, t2)"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    27
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    28
consts finiteRchain :: "('a => 'a => bool) * 'a list => bool"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    29
recdef finiteRchain  "measure (\<lambda>(R, l). size l)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    30
  "finiteRchain(R,  []) = True"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    31
  "finiteRchain(R, [x]) = True"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    32
  "finiteRchain(R, x # y # rst) = (R x y \<and> finiteRchain (R, y # rst))"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    33
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    34
text {* Not handled automatically: too complicated. *}
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    35
consts variant :: "nat * nat list => nat"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    36
recdef variant  "measure (\<lambda>(n::nat, ns). size (filter (\<lambda>y. n \<le> y) ns))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    37
  "variant (x, L) = (if x mem L then variant (Suc x, L) else x)"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    38
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    39
consts gcd :: "nat * nat => nat"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    40
recdef gcd  "measure (\<lambda>(x, y). x + y)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    41
  "gcd (0, y) = y"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    42
  "gcd (Suc x, 0) = Suc x"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    43
  "gcd (Suc x, Suc y) =
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    44
    (if y \<le> x then gcd (x - y, Suc y) else gcd (Suc x, y - x))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    45
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    46
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    47
text {*
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    48
  \medskip The silly @{term g} function: example of nested recursion.
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    49
  Not handled automatically.  In fact, @{term g} is the zero constant
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    50
  function.
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    51
 *}
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    52
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    53
consts g :: "nat => nat"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    54
recdef g  less_than
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    55
  "g 0 = 0"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    56
  "g (Suc x) = g (g x)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    57
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    58
lemma g_terminates: "g x < Suc x"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    59
  apply (induct x rule: g.induct)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    60
   apply (auto simp add: g.simps)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    61
  done
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    62
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    63
lemma g_zero: "g x = 0"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    64
  apply (induct x rule: g.induct)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    65
   apply (simp_all add: g.simps g_terminates)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    66
  done
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    67
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    68
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    69
consts Div :: "nat * nat => nat * nat"
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    70
recdef Div  "measure fst"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    71
  "Div (0, x) = (0, 0)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    72
  "Div (Suc x, y) =
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    73
    (let (q, r) = Div (x, y)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    74
    in if y \<le> Suc r then (Suc q, 0) else (q, Suc r))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    75
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    76
text {*
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    77
  \medskip Not handled automatically.  Should be the predecessor
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    78
  function, but there is an unnecessary "looping" recursive call in
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    79
  @{term "k 1"}.
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    80
*}
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    81
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    82
consts k :: "nat => nat"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    83
recdef k  less_than
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    84
  "k 0 = 0"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    85
  "k (Suc n) =
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    86
   (let x = k 1
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    87
    in if 0 = 1 then k (Suc 1) else n)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    88
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    89
consts part :: "('a => bool) * 'a list * 'a list * 'a list => 'a list * 'a list"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    90
recdef part  "measure (\<lambda>(P, l, l1, l2). size l)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    91
  "part (P, [], l1, l2) = (l1, l2)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    92
  "part (P, h # rst, l1, l2) =
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    93
    (if P h then part (P, rst, h # l1, l2)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    94
    else part (P, rst, l1, h # l2))"
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
    95
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    96
consts fqsort :: "('a => 'a => bool) * 'a list => 'a list"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    97
recdef fqsort  "measure (size o snd)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    98
  "fqsort (ord, []) = []"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
    99
  "fqsort (ord, x # rst) =
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   100
  (let (less, more) = part ((\<lambda>y. ord y x), rst, ([], []))
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   101
  in fqsort (ord, less) @ [x] @ fqsort (ord, more))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   102
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   103
text {*
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   104
  \medskip Silly example which demonstrates the occasional need for
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   105
  additional congruence rules (here: @{thm [source] map_cong}).  If
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   106
  the congruence rule is removed, an unprovable termination condition
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   107
  is generated!  Termination not proved automatically.  TFL requires
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   108
  @{term [source] "\<lambda>x. mapf x"} instead of @{term [source] mapf}.
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   109
*}
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
   110
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   111
consts mapf :: "nat => nat list"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   112
recdef mapf  "measure (\<lambda>m. m)"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   113
  "mapf 0 = []"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   114
  "mapf (Suc n) = concat (map (\<lambda>x. mapf x) (replicate n n))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   115
  (hints cong: map_cong)
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
   116
11024
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   117
recdef_tc mapf_tc: mapf
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   118
  apply (rule allI)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   119
  apply (case_tac "n = 0")
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   120
   apply simp_all
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   121
  done
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   122
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   123
text {* Removing the termination condition from the generated thms: *}
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   124
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   125
lemma "mapf (Suc n) = concat (map mapf (replicate n n))"
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   126
  apply (simp add: mapf.simps mapf_tc)
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   127
  done
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   128
23bf8d787b04 converted to new-style theories;
wenzelm
parents: 8522
diff changeset
   129
lemmas mapf_induct = mapf.induct [OF mapf_tc]
5124
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
   130
1ce3cccfacdb stepping stones: Recdef, Main;
wenzelm
parents:
diff changeset
   131
end