Re the question you asked as a comment to Joey Adams' answer: "Why does map . map $ not = (map . map) $ not work, while map . map not = map . (map not) doesn't?"
Let us first consider what map . map does. First of all, map takes a function f :: a -> b and a list with type [a], giving a list with type [b] where f is applied to each element of the original list. The type of map is (a -> b) -> [a] -> [b]. Recall that in Haskell, this means that map really is a function that takes a function a -> b and returns a function taking an [a] and giving a [b]. We often like to think of this as map being a function of two variables, but the distinction will be important later on.
Now let us consider what the composition operator (.) does. Recall that it is defined as
(.) :: (b1 -> c1) -> (a1 -> b1) -> (a1 -> c1)
f . g = \ x -> f (g x)
, i.e. it takes two functions f and g (with suitable domains/inputs and targets/outputs), and gives you a new function defined by first applying g and then applying f to whatever g spits out. I've called the type variables a1, b1, and c1 to avoid confusion later on.
OK, now we're in a position to figure out what map . map is. For the sake of clarity,
let us write the two (identical) maps as
mapleft :: (c -> d) -> [c] -> [d]
mapleft = map
mapright :: (a -> b) -> [a] -> [b]
mapright = map
Now the way "functions of two variables" are encoded in Haskell becomes important. Since functions in Haskell really just have one input, we have to be careful, as discussed above. Thus, the domain/input of of mapright is really just of type a -> b, while the output is really of type [a] -> [b]. Going back to the signature of (.), this means we've fixed the right hand operand's type, a1 -> b1 above, to be (a -> b) -> ([a] -> [b]). Thus, a1 = a -> b and b1 = [a] -> [b].
Proceding in the same way for the left hand operand, we see that [a] -> [b] = b1 = c -> d, so c = [a] and d = [b]. The same reasoning gives c1 = [c] -> [d] = [[a]] -> [[b]].
And we're done, we can now read off the type of leftmap . rightmap = map . map: It is
a1 -> c1 = (a -> b) -> [[a]] -> [[b]]
. This is confirmed by GHCi:
Prelude> :t (map . map)
(map . map) :: (a -> b) -> [[a]] -> [[b]]
Now it will become clear why the two functions you talk about are different. Clearly, (map . map) not has type [[Bool]] -> [[Bool]], which is exactly what you want. map not, on the other hand, has type [Bool] -> [Bool]. Taking the output of map not and feeding it into the (first) input of map will not even typecheck: The first input of map has to be a function, while the output of map not is a [Bool].