src/HOL/BNF/Examples/Stream.thy
author traytel
Fri, 15 Feb 2013 11:31:59 +0100
changeset 51141 cc7423ce6774
parent 51023 550f265864e3
child 51352 fdecc2cd5649
permissions -rw-r--r--
extended stream library
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     1
(*  Title:      HOL/BNF/Examples/Stream.thy
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     2
    Author:     Dmitriy Traytel, TU Muenchen
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     3
    Author:     Andrei Popescu, TU Muenchen
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     4
    Copyright   2012
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     5
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     6
Infinite streams.
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     7
*)
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     8
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
     9
header {* Infinite Streams *}
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    10
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    11
theory Stream
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    12
imports "../BNF"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    13
begin
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    14
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    15
codata 'a stream = Stream (shd: 'a) (stl: "'a stream") (infixr "##" 65)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    16
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    17
(* TODO: Provide by the package*)
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    18
theorem stream_set_induct:
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    19
  "\<lbrakk>\<And>s. P (shd s) s; \<And>s y. \<lbrakk>y \<in> stream_set (stl s); P y (stl s)\<rbrakk> \<Longrightarrow> P y s\<rbrakk> \<Longrightarrow>
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    20
    \<forall>y \<in> stream_set s. P y s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    21
  by (rule stream.dtor_set_induct)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    22
    (auto simp add:  shd_def stl_def stream_case_def fsts_def snds_def split_beta)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    23
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    24
lemma stream_map_simps[simp]:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    25
  "shd (stream_map f s) = f (shd s)" "stl (stream_map f s) = stream_map f (stl s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    26
  unfolding shd_def stl_def stream_case_def stream_map_def stream.dtor_unfold
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    27
  by (case_tac [!] s) (auto simp: Stream_def stream.dtor_ctor)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    28
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    29
lemma stream_map_Stream[simp]: "stream_map f (x ## s) = f x ## stream_map f s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    30
  by (metis stream.exhaust stream.sels stream_map_simps)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    31
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    32
theorem shd_stream_set: "shd s \<in> stream_set s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    33
  by (auto simp add: shd_def stl_def stream_case_def fsts_def snds_def split_beta)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    34
    (metis UnCI fsts_def insertI1 stream.dtor_set)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    35
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    36
theorem stl_stream_set: "y \<in> stream_set (stl s) \<Longrightarrow> y \<in> stream_set s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    37
  by (auto simp add: shd_def stl_def stream_case_def fsts_def snds_def split_beta)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    38
    (metis insertI1 set_mp snds_def stream.dtor_set_set_incl)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    39
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    40
(* only for the non-mutual case: *)
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    41
theorem stream_set_induct1[consumes 1, case_names shd stl, induct set: "stream_set"]:
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    42
  assumes "y \<in> stream_set s" and "\<And>s. P (shd s) s"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    43
  and "\<And>s y. \<lbrakk>y \<in> stream_set (stl s); P y (stl s)\<rbrakk> \<Longrightarrow> P y s"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    44
  shows "P y s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    45
  using assms stream_set_induct by blast
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    46
(* end TODO *)
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    47
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    48
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    49
subsection {* prepend list to stream *}
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    50
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    51
primrec shift :: "'a list \<Rightarrow> 'a stream \<Rightarrow> 'a stream" (infixr "@-" 65) where
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    52
  "shift [] s = s"
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    53
| "shift (x # xs) s = x ## shift xs s"
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    54
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    55
lemma shift_append[simp]: "(xs @ ys) @- s = xs @- ys @- s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    56
  by (induct xs) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    57
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    58
lemma shift_simps[simp]:
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    59
   "shd (xs @- s) = (if xs = [] then shd s else hd xs)"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    60
   "stl (xs @- s) = (if xs = [] then stl s else tl xs @- s)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    61
  by (induct xs) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    62
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    63
lemma stream_set_shift[simp]: "stream_set (xs @- s) = set xs \<union> stream_set s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    64
  by (induct xs) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    65
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    66
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    67
subsection {* set of streams with elements in some fixes set *}
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    68
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    69
coinductive_set
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    70
  streams :: "'a set => 'a stream set"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    71
  for A :: "'a set"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    72
where
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    73
  Stream[intro!, simp, no_atp]: "\<lbrakk>a \<in> A; s \<in> streams A\<rbrakk> \<Longrightarrow> a ## s \<in> streams A"
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    74
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    75
lemma shift_streams: "\<lbrakk>w \<in> lists A; s \<in> streams A\<rbrakk> \<Longrightarrow> w @- s \<in> streams A"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
    76
  by (induct w) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    77
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    78
lemma stream_set_streams:
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    79
  assumes "stream_set s \<subseteq> A"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    80
  shows "s \<in> streams A"
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    81
proof (coinduct rule: streams.coinduct[of "\<lambda>s'. \<exists>a s. s' = a ## s \<and> a \<in> A \<and> stream_set s \<subseteq> A"])
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    82
  case streams from assms show ?case by (cases s) auto
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    83
next
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    84
  fix s' assume "\<exists>a s. s' = a ## s \<and> a \<in> A \<and> stream_set s \<subseteq> A"
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    85
  then guess a s by (elim exE)
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    86
  with assms show "\<exists>a l. s' = a ## l \<and>
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    87
    a \<in> A \<and> ((\<exists>a s. l = a ## s \<and> a \<in> A \<and> stream_set s \<subseteq> A) \<or> l \<in> streams A)"
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    88
    by (cases s) auto
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    89
qed
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    90
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    91
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    92
subsection {* flatten a stream of lists *}
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    93
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    94
definition flat where
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    95
  "flat \<equiv> stream_unfold (hd o shd) (\<lambda>s. if tl (shd s) = [] then stl s else tl (shd s) ## stl s)"
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    96
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    97
lemma flat_simps[simp]:
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
    98
  "shd (flat ws) = hd (shd ws)"
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
    99
  "stl (flat ws) = flat (if tl (shd ws) = [] then stl ws else tl (shd ws) ## stl ws)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   100
  unfolding flat_def by auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   101
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
   102
lemma flat_Cons[simp]: "flat ((x # xs) ## ws) = x ## flat (if xs = [] then ws else xs ## ws)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   103
  unfolding flat_def using stream.unfold[of "hd o shd" _ "(x # xs) ## ws"] by auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   104
51023
550f265864e3 infix syntax for streams (reflecting the one for lists)
traytel
parents: 50518
diff changeset
   105
lemma flat_Stream[simp]: "xs \<noteq> [] \<Longrightarrow> flat (xs ## ws) = xs @- flat ws"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   106
  by (induct xs) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   107
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   108
lemma flat_unfold: "shd ws \<noteq> [] \<Longrightarrow> flat ws = shd ws @- flat (stl ws)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   109
  by (cases ws) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   110
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   111
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   112
subsection {* nth, take, drop for streams *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   113
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   114
primrec snth :: "'a stream \<Rightarrow> nat \<Rightarrow> 'a" (infixl "!!" 100) where
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   115
  "s !! 0 = shd s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   116
| "s !! Suc n = stl s !! n"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   117
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   118
lemma snth_stream_map[simp]: "stream_map f s !! n = f (s !! n)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   119
  by (induct n arbitrary: s) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   120
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   121
lemma shift_snth_less[simp]: "p < length xs \<Longrightarrow> (xs @- s) !! p = xs ! p"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   122
  by (induct p arbitrary: xs) (auto simp: hd_conv_nth nth_tl)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   123
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   124
lemma shift_snth_ge[simp]: "p \<ge> length xs \<Longrightarrow> (xs @- s) !! p = s !! (p - length xs)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   125
  by (induct p arbitrary: xs) (auto simp: Suc_diff_eq_diff_pred)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   126
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   127
lemma snth_stream_set[simp]: "s !! n \<in> stream_set s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   128
  by (induct n arbitrary: s) (auto intro: shd_stream_set stl_stream_set)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   129
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   130
lemma stream_set_range: "stream_set s = range (snth s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   131
proof (intro equalityI subsetI)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   132
  fix x assume "x \<in> stream_set s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   133
  thus "x \<in> range (snth s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   134
  proof (induct s)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   135
    case (stl s x)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   136
    then obtain n where "x = stl s !! n" by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   137
    thus ?case by (auto intro: range_eqI[of _ _ "Suc n"])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   138
  qed (auto intro: range_eqI[of _ _ 0])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   139
qed auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   140
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   141
primrec stake :: "nat \<Rightarrow> 'a stream \<Rightarrow> 'a list" where
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   142
  "stake 0 s = []"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   143
| "stake (Suc n) s = shd s # stake n (stl s)"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   144
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   145
lemma length_stake[simp]: "length (stake n s) = n"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   146
  by (induct n arbitrary: s) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   147
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   148
lemma stake_stream_map[simp]: "stake n (stream_map f s) = map f (stake n s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   149
  by (induct n arbitrary: s) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   150
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   151
primrec sdrop :: "nat \<Rightarrow> 'a stream \<Rightarrow> 'a stream" where
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   152
  "sdrop 0 s = s"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   153
| "sdrop (Suc n) s = sdrop n (stl s)"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   154
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   155
lemma sdrop_simps[simp]:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   156
  "shd (sdrop n s) = s !! n" "stl (sdrop n s) = sdrop (Suc n) s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   157
  by (induct n arbitrary: s)  auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   158
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   159
lemma sdrop_stream_map[simp]: "sdrop n (stream_map f s) = stream_map f (sdrop n s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   160
  by (induct n arbitrary: s) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   161
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   162
lemma stake_sdrop: "stake n s @- sdrop n s = s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   163
  by (induct n arbitrary: s) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   164
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   165
lemma id_stake_snth_sdrop:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   166
  "s = stake i s @- s !! i ## sdrop (Suc i) s"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   167
  by (subst stake_sdrop[symmetric, of _ i]) (metis sdrop_simps stream.collapse)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   168
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   169
lemma stream_map_alt: "stream_map f s = s' \<longleftrightarrow> (\<forall>n. f (s !! n) = s' !! n)" (is "?L = ?R")
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   170
proof
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   171
  assume ?R
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   172
  thus ?L 
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   173
    by (coinduct rule: stream.coinduct[of "\<lambda>s1 s2. \<exists>n. s1 = stream_map f (sdrop n s) \<and> s2 = sdrop n s'"])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   174
      (auto intro: exI[of _ 0] simp del: sdrop.simps(2))
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   175
qed auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   176
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   177
lemma stake_invert_Nil[iff]: "stake n s = [] \<longleftrightarrow> n = 0"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   178
  by (induct n) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   179
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   180
lemma sdrop_shift: "\<lbrakk>s = w @- s'; length w = n\<rbrakk> \<Longrightarrow> sdrop n s = s'"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   181
  by (induct n arbitrary: w s) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   182
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   183
lemma stake_shift: "\<lbrakk>s = w @- s'; length w = n\<rbrakk> \<Longrightarrow> stake n s = w"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   184
  by (induct n arbitrary: w s) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   185
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   186
lemma stake_add[simp]: "stake m s @ stake n (sdrop m s) = stake (m + n) s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   187
  by (induct m arbitrary: s) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   188
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   189
lemma sdrop_add[simp]: "sdrop n (sdrop m s) = sdrop (m + n) s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   190
  by (induct m arbitrary: s) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   191
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   192
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   193
subsection {* unary predicates lifted to streams *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   194
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   195
definition "stream_all P s = (\<forall>p. P (s !! p))"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   196
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   197
lemma stream_all_iff[iff]: "stream_all P s \<longleftrightarrow> Ball (stream_set s) P"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   198
  unfolding stream_all_def stream_set_range by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   199
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   200
lemma stream_all_shift[simp]: "stream_all P (xs @- s) = (list_all P xs \<and> stream_all P s)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   201
  unfolding stream_all_iff list_all_iff by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   202
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   203
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   204
subsection {* recurring stream out of a list *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   205
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   206
definition cycle :: "'a list \<Rightarrow> 'a stream" where
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   207
  "cycle = stream_unfold hd (\<lambda>xs. tl xs @ [hd xs])"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   208
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   209
lemma cycle_simps[simp]:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   210
  "shd (cycle u) = hd u"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   211
  "stl (cycle u) = cycle (tl u @ [hd u])"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   212
  by (auto simp: cycle_def)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   213
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   214
lemma cycle_decomp: "u \<noteq> [] \<Longrightarrow> cycle u = u @- cycle u"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   215
proof (coinduct rule: stream.coinduct[of "\<lambda>s1 s2. \<exists>u. s1 = cycle u \<and> s2 = u @- cycle u \<and> u \<noteq> []"])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   216
  case (2 s1 s2)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   217
  then obtain u where "s1 = cycle u \<and> s2 = u @- cycle u \<and> u \<noteq> []" by blast
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   218
  thus ?case using stream.unfold[of hd "\<lambda>xs. tl xs @ [hd xs]" u] by (auto simp: cycle_def)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   219
qed auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   220
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   221
lemma cycle_Cons: "cycle (x # xs) = x ## cycle (xs @ [x])"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   222
proof (coinduct rule: stream.coinduct[of "\<lambda>s1 s2. \<exists>x xs. s1 = cycle (x # xs) \<and> s2 = x ## cycle (xs @ [x])"])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   223
  case (2 s1 s2)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   224
  then obtain x xs where "s1 = cycle (x # xs) \<and> s2 = x ## cycle (xs @ [x])" by blast
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   225
  thus ?case
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   226
    by (auto simp: cycle_def intro!: exI[of _ "hd (xs @ [x])"] exI[of _ "tl (xs @ [x])"] stream.unfold)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   227
qed auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   228
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   229
lemma cycle_rotated: "\<lbrakk>v \<noteq> []; cycle u = v @- s\<rbrakk> \<Longrightarrow> cycle (tl u @ [hd u]) = tl v @- s"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   230
  by (auto dest: arg_cong[of _ _ stl])
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   231
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   232
lemma stake_append: "stake n (u @- s) = take (min (length u) n) u @ stake (n - length u) s"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   233
proof (induct n arbitrary: u)
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   234
  case (Suc n) thus ?case by (cases u) auto
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   235
qed auto
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   236
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   237
lemma stake_cycle_le[simp]:
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   238
  assumes "u \<noteq> []" "n < length u"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   239
  shows "stake n (cycle u) = take n u"
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   240
using min_absorb2[OF less_imp_le_nat[OF assms(2)]]
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   241
  by (subst cycle_decomp[OF assms(1)], subst stake_append) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   242
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   243
lemma stake_cycle_eq[simp]: "u \<noteq> [] \<Longrightarrow> stake (length u) (cycle u) = u"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   244
  by (metis cycle_decomp stake_shift)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   245
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   246
lemma sdrop_cycle_eq[simp]: "u \<noteq> [] \<Longrightarrow> sdrop (length u) (cycle u) = cycle u"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   247
  by (metis cycle_decomp sdrop_shift)
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   248
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   249
lemma stake_cycle_eq_mod_0[simp]: "\<lbrakk>u \<noteq> []; n mod length u = 0\<rbrakk> \<Longrightarrow>
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   250
   stake n (cycle u) = concat (replicate (n div length u) u)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   251
  by (induct "n div length u" arbitrary: n u) (auto simp: stake_add[symmetric])
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   252
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   253
lemma sdrop_cycle_eq_mod_0[simp]: "\<lbrakk>u \<noteq> []; n mod length u = 0\<rbrakk> \<Longrightarrow>
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   254
   sdrop n (cycle u) = cycle u"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   255
  by (induct "n div length u" arbitrary: n u) (auto simp: sdrop_add[symmetric])
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   256
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   257
lemma stake_cycle: "u \<noteq> [] \<Longrightarrow>
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   258
   stake n (cycle u) = concat (replicate (n div length u) u) @ take (n mod length u) u"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   259
  by (subst mod_div_equality[of n "length u", symmetric], unfold stake_add[symmetric]) auto
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   260
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   261
lemma sdrop_cycle: "u \<noteq> [] \<Longrightarrow> sdrop n (cycle u) = cycle (rotate (n mod length u) u)"
51141
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   262
  by (induct n arbitrary: u) (auto simp: rotate1_rotate_swap rotate1_hd_tl rotate_conv_mod[symmetric])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   263
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   264
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   265
subsection {* stream repeating a single element *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   266
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   267
definition "same x = stream_unfold (\<lambda>_. x) id ()"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   268
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   269
lemma same_simps[simp]: "shd (same x) = x" "stl (same x) = same x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   270
  unfolding same_def by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   271
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   272
lemma same_unfold: "same x = Stream x (same x)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   273
  by (metis same_simps stream.collapse)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   274
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   275
lemma snth_same[simp]: "same x !! n = x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   276
  unfolding same_def by (induct n) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   277
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   278
lemma stake_same[simp]: "stake n (same x) = replicate n x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   279
  unfolding same_def by (induct n) (auto simp: upt_rec)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   280
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   281
lemma sdrop_same[simp]: "sdrop n (same x) = same x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   282
  unfolding same_def by (induct n) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   283
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   284
lemma shift_replicate_same[simp]: "replicate n x @- same x = same x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   285
  by (metis sdrop_same stake_same stake_sdrop)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   286
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   287
lemma stream_all_same[simp]: "stream_all P (same x) \<longleftrightarrow> P x"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   288
  unfolding stream_all_def by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   289
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   290
lemma same_cycle: "same x = cycle [x]"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   291
  by (coinduct rule: stream.coinduct[of "\<lambda>s1 s2. s1 = same x \<and> s2 = cycle [x]"]) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   292
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   293
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   294
subsection {* stream of natural numbers *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   295
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   296
definition "fromN n = stream_unfold id Suc n"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   297
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   298
lemma fromN_simps[simp]: "shd (fromN n) = n" "stl (fromN n) = fromN (Suc n)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   299
  unfolding fromN_def by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   300
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   301
lemma snth_fromN[simp]: "fromN n !! m = n + m"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   302
  unfolding fromN_def by (induct m arbitrary: n) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   303
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   304
lemma stake_fromN[simp]: "stake m (fromN n) = [n ..< m + n]"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   305
  unfolding fromN_def by (induct m arbitrary: n) (auto simp: upt_rec)
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   306
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   307
lemma sdrop_fromN[simp]: "sdrop m (fromN n) = fromN (n + m)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   308
  unfolding fromN_def by (induct m arbitrary: n) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   309
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   310
abbreviation "nats \<equiv> fromN 0"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   311
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   312
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   313
subsection {* zip *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   314
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   315
definition "szip s1 s2 =
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   316
  stream_unfold (map_pair shd shd) (map_pair stl stl) (s1, s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   317
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   318
lemma szip_simps[simp]:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   319
  "shd (szip s1 s2) = (shd s1, shd s2)" "stl (szip s1 s2) = szip (stl s1) (stl s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   320
  unfolding szip_def by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   321
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   322
lemma snth_szip[simp]: "szip s1 s2 !! n = (s1 !! n, s2 !! n)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   323
  by (induct n arbitrary: s1 s2) auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   324
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   325
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   326
subsection {* zip via function *}
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   327
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   328
definition "stream_map2 f s1 s2 =
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   329
  stream_unfold (\<lambda>(s1,s2). f (shd s1) (shd s2)) (map_pair stl stl) (s1, s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   330
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   331
lemma stream_map2_simps[simp]:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   332
 "shd (stream_map2 f s1 s2) = f (shd s1) (shd s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   333
 "stl (stream_map2 f s1 s2) = stream_map2 f (stl s1) (stl s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   334
  unfolding stream_map2_def by auto
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   335
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   336
lemma stream_map2_szip:
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   337
  "stream_map2 f s1 s2 = stream_map (split f) (szip s1 s2)"
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   338
  by (coinduct rule: stream.coinduct[of
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   339
    "\<lambda>s1 s2. \<exists>s1' s2'. s1 = stream_map2 f s1' s2' \<and> s2 = stream_map (split f) (szip s1' s2')"])
cc7423ce6774 extended stream library
traytel
parents: 51023
diff changeset
   340
    fastforce+
50518
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   341
d4fdda801e19 short library for streams
traytel
parents:
diff changeset
   342
end