Last active
July 11, 2018 05:15
-
-
Save rahulmutt/1da88766cb5b321ba2f7721cf844dde5 to your computer and use it in GitHub Desktop.
Derivation involving (->) applicative instance
This file contains 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
lift2 :: (Applicative f) = > (a -> b -> c) -> f a -> f b -> f c | |
---------- | |
(\a -> State (\s -> (p a s, S.insert a s))) | |
=> Split up s function into component-wise functions [Definition of lift2 for (->)] | |
lift2 :: (a -> b -> c) -> (s -> a) -> (s -> b) -> (s -> c) | |
lift2 :: (a -> b -> (a, b)) -> (s -> a) -> (s -> b) -> (s -> (a, b)) | |
\a -> State (lift2 (\a1 a1 -> (a1, a2)) (\s -> p a s) (\s -> S.insert a s)) | |
=> [Eta Reduction] | |
\a -> State (lift2 (,) (p a) (S.insert a)) | |
=> Factor out the inside a and apply a [Beta Abstraction] | |
\a -> State ((\b -> lift (,) (p b) (S.insert b)) a) | |
=> Split up b function into component-wise functions [Definition of lift2 for (->)] | |
lift2 :: (a -> b -> c) -> (s -> a) -> (s -> b) -> (s -> c) | |
\a -> State ((lift2 (\a1 a2 -> lift (,) a1 a2) (\b -> p b) (\b -> S.insert b)) a) | |
=> [Eta Reduction] | |
\a -> State ((lift2 (lift (,)) p S.insert) a) | |
=> [Eta Reduction] | |
State . (lift2 (lift (,)) p S.insert) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment