I am trying to numerically integrate a function in Haskell using the trapezoidal rule, returning an anti-derivative which takes arguments a, b, for the endpoints of the interval to be integrated.

integrate :: (Float -> Float) -> (Float -> Float -> Float)

integrate f
  = \ a b -> d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
    where
      d = (b - a) / n
      n = 1000

In the above, I use

n - for the number of subintervals
d - for the width of each subinterval

This almost works, except for the bound arguments a,b in the lambda. I get the error message:

Not in scope: `b'
Not in scope: `a'

I can understand that the scope of a,b is restricted to just that lambda expression, but is there a workaround in Haskell so that I don't have to write (b-a)/n for each occurrence of d in the above?

link|improve this question
3  
TIL: You can't use where with lambdas let vs where. See also where does the where clause come in handy in Haskell – rampion Jan 24 at 16:21
Thanks to everyone who replied. I did not realize that this problem leads directly to a well-known let vs where discussion. I also want to thank those who suggested that I write the function as: integrate f a b = ... That's a nice and succinct solution as well. – Bylextor Jan 25 at 19:19
feedback

5 Answers

You're thinking you need to return a function which takes two Floats and returns a Float, but actually that's no different to taking two extra Floats in your integrate function and using currying whenever you call it (i.e. just don't provide them and the return type will be Float -> Float -> Float).

So you can rewrite your function like this

integrate :: (Float -> Float) -> Float -> Float -> Float

integrate f a b
  = d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
    where
      d = (b - a) / n
      n = 1000

Or you could use let ... in instead of where:

integrate f
  = \a b ->
      let d = (b - a / n)
          n = 1000
      in d * sum [ f (a + d * k) | k <- [0..n] ] - d/2.0 * (f a + f b)
link|improve this answer
2  
FWIW, Matthew omitted the parentheses in the type signature, but that is not necessary. You can keep the type signature the same and write the function body in this new way. The two signatures are exactly equivalent. – luqui Jan 24 at 17:42
Well spotted. I was intending to mention that when I was writing the answer but I must've forgotten. – Matthew Walton Jan 25 at 9:13
Thanks. Rewriting the function as integrate f a b = ... is a great solution. – Bylextor Jan 25 at 19:21
feedback

Sure.

integrate f a b = d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
    where 
      d = (b - a) / n
      n = 1000
link|improve this answer
feedback

If you insist on where:

integrate f = \a b -> case () of
    () ->  d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
           where 
               d = (b - a) / n
               n = 1000

Looks pretty nice, does it not? To make the case look a bit more motivated:

integrate f = \a b -> case (f a + f b) of
    fs ->  d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * fs
           where 
               d = (b - a) / n
               n = 1000
link|improve this answer
Very clever! Thank you! – Bylextor Jan 25 at 19:20
feedback

You have a lot of work-arounds.

If you don't know any binding syntax except lambda expressions you can do this (which I love the most because of its theoretical beauty, but never use because of its syntactic ugliness):

integrate f
  = \a b -> (\d -> d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)) 
             ((b - a) / n)
    where
      n = 1000

If you like definitions and only know where-syntax you can do this:

integrate f = go
  where
    n = 1000
    go a b = d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
      where
        d = (b - a) / n

If you also know let-syntax, you can do this:

integrate f = 
  \a b -> let d = (b - a) / n 
          in d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
  where
    n = 1000

Finally, if you remember that a -> (b -> c -> d) is the same as a -> b -> c -> d, you can do the obvious:

integrate f a b = d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
  where
    n = 1000
    d = (b - a) / n
link|improve this answer
There is another reason not to use the first option: lambdas do not have let polymorphism. – luqui Jan 24 at 17:43
Thank you. The let option is probably the simplest workaround for my where bound-variable problem. – Bylextor Jan 25 at 19:11
Can you tell me a bit more about "go"? I've tried to look it up, but it's very difficult to find any information about "go" in Haskell, because search engines confuse it with the usual English word "go", and "go" does not appear in most book indices. – Bylextor Jan 25 at 19:29
@Bylextor, go is just an arbitrary name, like foo. You use that for a helper function when you run out of imagination. :) – Rotsor Jan 25 at 19:57
@Rotsor Got it. Thanks. Go, man, go! :) – Bylextor Jan 25 at 20:58
feedback

try:

integrate f a b = d * sum [ f (a + d*k) | k <- [0..n] ] - d/2.0 * (f a + f b)
    where
      d = (b - a) / n
      n = 1000
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.