Reading "Thinking Functionally with Haskell" I came across a part of a program calculation that required that map sum (map (x:) xss)
be rewritten as map (x+) (map sum xss)
Intuitively I know that it makes sense ...
if you have some lists that you are going to sum but, before summing, to those same lists you are also going to add one element 'x', then that is the same as taking a list of sums of the origninal lists and adding x's value to each of them.
But I would like to know how to transform one into the other only using equational reasoning. I feel like I'm missing a law or rule that would help me understand.
(.)
and saymap (sum . (x:)) xss = map (\ xs -> sum (x:xs)) xss = map (\ xs -> x + sum xs) = ...
? – Pomelo