vote up 1 vote down star

I am teaching myself Haskell

I want to write a function that recursively finds the first number that has an integer square root and is smaller than a starting number.

It looks like this:

findFirstSquare :: Int -> Int
findFirstSquare x
    | x <= 0	                              = error "This function only works for 1 or above"
    | fromInteger(floor(sqrt(x))) == (sqrt x) = x
    | otherwise                               = intSqrt(x - 1)

But the GHC parser complains about the middle guard when parsing my .hs file, with the following: No instance for (RealFrac Int) arising from a use of `floor' at ...

However, if I type the following into the interactive window, it happily parses it:

 fromInteger(floor(sqrt(4))) == (sqrt 4)

My question is: Why am I getting a parser error for an expression which seems equivalent to one that is parsed correctly from the command line?

flag
1  
it's actually a type error, not a parse error, right? – yairchu Aug 20 at 9:14

1 Answer

vote up 6 vote down check

Ok, I figured it out.

The difference is that the constant "4" is overloaded, so interactively sqrt(4) is getting the square root of the Float 4

However my function declares x as an Int, therefore I needed to add a fromIntegral to the calls to sqrt, so that they would work.

Changing the middle guard to the following did the trick:

| fromIntegral(floor(sqrt(fromIntegral(x)))) == (sqrt(fromIntegral(x))) = x
link|flag
1  
That's right. Except I'd use fromInteger in place of fromIntegral. – Alexey Romanov Aug 20 at 7:52
Incidentally, fromInteger is also used by GHCi to do the "overloading" of numeric literals. – Tom Lokhorst Aug 20 at 8:07

Your Answer

Get an OpenID
or

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