Step * 1 1 of Lemma mk_monad_wf

.....subterm..... T:t
1:n
1. Type ⟶ Type
2. return : ⋂T:Type. (T ⟶ (M T))
3. bind : ⋂T,S:Type.  ((M T) ⟶ (T ⟶ (M S)) ⟶ (M S))
4. ∀[T,S:Type]. ∀[x:T].  ∀f:T ⟶ (M S). ((bind (return x) f) (f x) ∈ (M S))
5. ∀[T:Type]. ∀[m:M T].  ((bind return) m ∈ (M T))
6. ∀[T,S,U:Type]. ∀[m:M T]. ∀[f:T ⟶ (M S)]. ∀[g:S ⟶ (M U)].
     ((bind (bind f) g) (bind x.(bind (f x) g))) ∈ (M U))
⊢ M ∈ Type ⟶ Type
BY
Auto }


Latex:


Latex:
.....subterm.....  T:t
1:n
1.  M  :  Type  {}\mrightarrow{}  Type
2.  return  :  \mcap{}T:Type.  (T  {}\mrightarrow{}  (M  T))
3.  bind  :  \mcap{}T,S:Type.    ((M  T)  {}\mrightarrow{}  (T  {}\mrightarrow{}  (M  S))  {}\mrightarrow{}  (M  S))
4.  \mforall{}[T,S:Type].  \mforall{}[x:T].    \mforall{}f:T  {}\mrightarrow{}  (M  S).  ((bind  (return  x)  f)  =  (f  x))
5.  \mforall{}[T:Type].  \mforall{}[m:M  T].    ((bind  m  return)  =  m)
6.  \mforall{}[T,S,U:Type].  \mforall{}[m:M  T].  \mforall{}[f:T  {}\mrightarrow{}  (M  S)].  \mforall{}[g:S  {}\mrightarrow{}  (M  U)].
          ((bind  (bind  m  f)  g)  =  (bind  m  (\mlambda{}x.(bind  (f  x)  g))))
\mvdash{}  M  \mmember{}  Type  {}\mrightarrow{}  Type


By


Latex:
Auto




Home Index