Learning Haskell

I’m writing this post as a way of moving myself forward at least one notch through Graham Hutton’s Programming in Haskell, which I’ve been very slowly, occasionally working through. I’m in the middle of chapter 7 right now.

The thing that slows me down (apart from having 3 kids at home including a baby) is that I’m distracted by the learning process itself. I don’t want to too easily forget the false or imperfect theories that I form along the way. A teacher’s job is to help bridge the gap between imperfect models in the student’s mind and models that are more useful and effective. But the only way they can do that is to be familiar with such inaccurate models, as well as to value them as important stages of the student’s learning (rather than reject them out of hand as is the modus operandi of schools today, but I digress). I may want to teach this stuff some day, and this is my only chance to observe the learning process first-hand, at least as a beginner. I need to keep a log of my learning, or at least parts of it, in order to keep me moving forward with the assurance that my intermediate stages of learning will not be forgotten forever.

Quick disclaimer: This post is not the first of a series of Haskell posts, at least not any planned series. I hereby give myself permission to not post on Haskell ever again, or for that matter, to drop it in favor of learning something else (although given how much I keep getting drawn back to it, I’m pretty sure that won’t happen).

Recursion patterns

In chapter 6 (on recursion), I noticed there are basically two things you could base recursion off of, or two things to “recurse” on:

  • a list, or
  • an integer

Recursion on an integer

The basic pattern for recursion on an integer is evident in the definition of the factorial function:

factorial 0     = 1
factorial (n+1) = (n+1) * factorial n

The factorial of 0 is just 1 (the identity for multiplication). The factorial of a positive integer (represented by (n+1)) is that integer ((n+1)) multiplied by the factorial of one less than that integer (n). The function is invoked recursively until the numbers run out and the termination case is reached (an argument of 0).

Recursion on a list

The basic pattern for recursion over a list is evident in the definition for the product function:

product []     = 1
product (n:ns) = n * product ns

The product of an empty list is just 1 (again, the identity for multiplication). The product of a non-empty list (represented by (n:ns)) is the result of multiplying the head of the list (n) times the product of the tail of the list (ns). The function is invoked recursively until the list runs out and the termination case is reached (an empty-list argument).

Capturing the list-recursion pattern

I’m only partly through chapter 7 (on higher-order functions), but I’ve now been introduced to the foldr library function, which captures the pattern evident in the product function, which uses recursion over a list. Here it is:

f []     = v
f (x:xs) = x ⊕ f xs

The v stands for some base value (which was 1 in the product function). The circled-plus symbol (⊕) stands for some operator (which was * in the product function). The foldr function takes those two variables (a base value and an operator) and automatically constructs a function for you that does the above. So you can now define product more succinctly (and without using explicit recursion):

product ns = foldr (*) 1 ns

Or even more succinctly, and thanks to Haskell’s function currying:

product = foldr (*) 1

What about capturing the number recursion pattern?

The open question in my mind is: is there an analogous higher-order function for recursion on numbers?

What wasn’t explicitly mentioned in the book is the idea that an integer can be thought of as representing a list of numbers, starting at that number and counting down to 1. If that’s the case, then I could just use foldr for recursion on a number, provided that I first turn that number into a list of numbers counting down to 1.

Using that idea, here’s another way to define factorial:

factorial n = foldr (*) 1 [n,(n-1)..1]

Of course, in the case of multiplication, the order of the list of arguments doesn’t matter, so the list doesn’t have to count down. It could start at 1 and count up to the integer instead:

factorial n = foldr (*) 1 [1..n]

Anyway, that’s where I’m at with these half-baked observations. I’m sure I’ll find better or more appropriate abstractions as well as more interesting insights. I’ll be able to look back at this post and say “Oh, what you want is the ____ function!”

2 Comments »

  1. Joshua Ball said,

    June 13, 2007 @ 7:29 pm

    I think you mean partial application, not currying.

    An open question on MY mind which you have brought up is this: What would a fold look like on church numerals?

    Just for fun, here is a generalization of the fold function:
    gfoldr :: (c -> Maybe a) -> (c -> c) -> (a -> b -> b) -> b -> c -> b
    gfoldr first rest f z d
    | isNothing $ first d = z
    | otherwise = f (fromJust $ first d) (gfoldr first rest f z (rest d))

    And it’s application to lists (equivalent to foldr in the Prelude):
    foldrList = gfoldr safeHead tail where
    safeHead [] = Nothing
    safeHead (x:xs) = Just x

    And it’s application to numbers (your definition):
    foldrNumber = gfoldr (\x -> if x == 0 then Nothing else Just x) (+(-1))

  2. Evan said,

    June 14, 2007 @ 10:41 am

    Hi Joshua,

    Thanks for pointing out my impreciseness. I guess I meant “thanks to the fact that we can partially apply curried functions”. Or am I still misusing the word “curry” even there? I’m still working on getting all the jargon right. 🙂

    As for your generalized fold, I’m sure I’ll be referring back to it for inspiration, even if I don’t fully understand it now.

    I’ve posted another Haskell post already. On Monday, I start a new computer music class, so I’m not sure how many more of these I’ll have time to do in the near future. But I might still sneak one or two in. Keep the comments coming!

    Evan

RSS feed for comments on this post · TrackBack URI

Leave a Comment