Exercise 3.9.4:
(f o g o h)' = (f' o g o h) * (g' o h) * (h')
by the chain rule which states that the derivative of a composite
function is the product of the <
Exercise 3.9.7:
map(F, reverse(L)) == reverse(map(F, L))
map(F, append(L,M)) == append(map(F, L), map(F, M))
map(compose(F, G), L) == map(F, map(G, L))
is a true functional identity. Functions F and G are applied to L in the same order.
is a true functional identity. Function F changes the values of the
elements, regardless of their order. Reverse changes the order of the
elements, regardless of their value.
is a true functional identity. In both cases, function F is applied
to all the elements of both L and M and the output is a single list.