Last active
March 25, 2017 05:58
-
-
Save techtangents/71cbb3b1f1b068df8cc6745b51928493 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Proof of the functor laws for the Maybe functor | |
fmap :: (a -> b) -> Maybe a -> Maybe b | |
fmap f (Just x) = Just (f x) | |
fmap f Nothing = Nothing | |
Prove: | |
fmap id = id | |
Case 1: Just x | |
fmap id (Just x) | |
= Just (id x) -- defn of fmap | |
= Just x -- defn of id | |
Case 2: Nothing | |
fmap id Nothing | |
= Nothing -- defn of fmap | |
Prove: | |
fmap (g . f) = fmap g . fmap f | |
Case 1: Just a | |
fmap (g . f) (Just a) | |
= Just (g . f $ a) -- defn of fmap | |
= Just (g(f a)) -- defn of . | |
(fmap g . fmap f) (Just a) | |
= fmap g (fmap f (Just a)) -- defn of . | |
= fmap g (Just (f a)) -- defn of fmap | |
= Just (g(f a)) -- defn of fmap | |
Case 2: Nothing | |
(fmap g . fmap f) Nothing | |
= fmap g (fmap f Nothing) -- defn of . | |
= fmap g Nothing -- defn of fmap | |
= Nothing -- defn of fmap | |
fmap (g . f) Nothing | |
= Nothing -- defn of fmap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment