モナドに同型であるこのモナドを考えてみましょう(Bool ->)
:
data Pair a = P a a
instance Functor Pair where
fmap f (P x y) = P (f x) (f y)
instance Monad Pair where
return x = P x x
P a b >>= f = P x y
where P x _ = f a
P _ y = f b
そしてMaybe
モナドでそれを構成します:
newtype Bad a = B (Maybe (Pair a))
Bad
私はそれがモナドであるはずがないと主張します。
部分的な証明:
fmap
を満たすことを定義する方法は 1 つしかありませんfmap id = id
。
instance Functor Bad where
fmap f (B x) = B $ fmap (fmap f) x
モナド則を思い出してください:
(1) join (return x) = x
(2) join (fmap return x) = x
(3) join (join x) = join (fmap join x)
の定義には、またはreturn x
の 2 つの選択肢があります。(1) と (2) から戻る希望を持つためには、 を捨てることができないことは明らかなので、2 番目のオプションを選択する必要があります。B Nothing
B (Just (P x x))
x
x
return' :: a -> Bad a
return' x = B (Just (P x x))
それは去りjoin
ます。可能な入力はわずかしかないため、それぞれについてケースを作成できます。
join :: Bad (Bad a) -> Bad a
(A) join (B Nothing) = ???
(B) join (B (Just (P (B Nothing) (B Nothing)))) = ???
(C) join (B (Just (P (B (Just (P x1 x2))) (B Nothing)))) = ???
(D) join (B (Just (P (B Nothing) (B (Just (P x1 x2)))))) = ???
(E) join (B (Just (P (B (Just (P x1 x2))) (B (Just (P x3 x4)))))) = ???
出力には typeがあるため、Bad a
オプションはB Nothing
or B (Just (P y1 y2))
whereのみです。from を選択する必要があります。y1
y2
x1 ... x4
(A) と (B) の場合、 type の値がないa
ためB Nothing
、どちらの場合も戻る必要があります。
ケース (E) は、(1) と (2) のモナド則によって決定されます。
-- apply (1) to (B (Just (P y1 y2)))
join (return' (B (Just (P y1 y2))))
= -- using our definition of return'
join (B (Just (P (B (Just (P y1 y2))) (B (Just (P y1 y2))))))
= -- from (1) this should equal
B (Just (P y1 y2))
B (Just (P y1 y2))
ケース (E) で戻るために、これは、 または のいずれかから、およびまたは またはのいずれかy1
から選択する必要があることを意味します。x1
x3
y2
x2
x4
-- apply (2) to (B (Just (P y1 y2)))
join (fmap return' (B (Just (P y1 y2))))
= -- def of fmap
join (B (Just (P (return y1) (return y2))))
= -- def of return
join (B (Just (P (B (Just (P y1 y1))) (B (Just (P y2 y2))))))
= -- from (2) this should equal
B (Just (P y1 y2))
同様に、これは、または のいずれかから、およびまたは またはのいずれかy1
から選択する必要があることを示しています。2 つを組み合わせて、(E) の右辺が でなければならないことを決定します。x1
x2
y2
x3
x4
B (Just (P x1 x4))
ここまでは問題ありませんが、(C) と (D) の右辺を埋めようとすると問題が発生します。
それぞれに 5 つの可能な右辺があり、どの組み合わせも機能しません。私はまだこれについて良い議論を持っていませんが、すべての組み合わせを徹底的にテストするプログラムがあります:
{-# LANGUAGE ImpredicativeTypes, ScopedTypeVariables #-}
import Control.Monad (guard)
data Pair a = P a a
deriving (Eq, Show)
instance Functor Pair where
fmap f (P x y) = P (f x) (f y)
instance Monad Pair where
return x = P x x
P a b >>= f = P x y
where P x _ = f a
P _ y = f b
newtype Bad a = B (Maybe (Pair a))
deriving (Eq, Show)
instance Functor Bad where
fmap f (B x) = B $ fmap (fmap f) x
-- The only definition that could possibly work.
unit :: a -> Bad a
unit x = B (Just (P x x))
-- Number of possible definitions of join for this type. If this equals zero, no monad for you!
joins :: Integer
joins = sum $ do
-- Try all possible ways of handling cases 3 and 4 in the definition of join below.
let ways = [ \_ _ -> B Nothing
, \a b -> B (Just (P a a))
, \a b -> B (Just (P a b))
, \a b -> B (Just (P b a))
, \a b -> B (Just (P b b)) ] :: [forall a. a -> a -> Bad a]
c3 :: forall a. a -> a -> Bad a <- ways
c4 :: forall a. a -> a -> Bad a <- ways
let join :: forall a. Bad (Bad a) -> Bad a
join (B Nothing) = B Nothing -- no choice
join (B (Just (P (B Nothing) (B Nothing)))) = B Nothing -- again, no choice
join (B (Just (P (B (Just (P x1 x2))) (B Nothing)))) = c3 x1 x2
join (B (Just (P (B Nothing) (B (Just (P x3 x4)))))) = c4 x3 x4
join (B (Just (P (B (Just (P x1 x2))) (B (Just (P x3 x4)))))) = B (Just (P x1 x4)) -- derived from monad laws
-- We've already learnt all we can from these two, but I decided to leave them in anyway.
guard $ all (\x -> join (unit x) == x) bad1
guard $ all (\x -> join (fmap unit x) == x) bad1
-- This is the one that matters
guard $ all (\x -> join (join x) == join (fmap join x)) bad3
return 1
main = putStrLn $ show joins ++ " combinations work."
-- Functions for making all the different forms of Bad values containing distinct Ints.
bad1 :: [Bad Int]
bad1 = map fst (bad1' 1)
bad3 :: [Bad (Bad (Bad Int))]
bad3 = map fst (bad3' 1)
bad1' :: Int -> [(Bad Int, Int)]
bad1' n = [(B Nothing, n), (B (Just (P n (n+1))), n+2)]
bad2' :: Int -> [(Bad (Bad Int), Int)]
bad2' n = (B Nothing, n) : do
(x, n') <- bad1' n
(y, n'') <- bad1' n'
return (B (Just (P x y)), n'')
bad3' :: Int -> [(Bad (Bad (Bad Int)), Int)]
bad3' n = (B Nothing, n) : do
(x, n') <- bad2' n
(y, n'') <- bad2' n'
return (B (Just (P x y)), n'')