I'm trying to convert some Haskell code to F# but I'm having some trouble since Haskell is lazy by default and F# is not. I'm also still learning my way around F#. Below is a polymorphic cosine function in Haskell with pretty good performance. I want to try and keep the same or better performance parameters in F#. I would like to see a F# List version and a F# Seq version since the Seq version would be more like the lazy Haskell but the List version would probably perform better. Thanks for any help.

Efficiency: number of arithmetic operations used proportional to number of terms in series

Space: uses constant space, independent of number of terms

takeThemTwoByTwo xs =
    takeWhile (not . null) [take 2 ys | ys <- iterate (drop 2) xs]

products xss = [product xs | xs <- xss]

pairDifferences xs =
    [foldr (-) 0 adjacentPair | adjacentPair <- takeThemTwoByTwo xs]

harmonics x = [x/(fromIntegral k) | k <- [1 ..]]

cosineTerms = scanl (*) 1 . products . takeThemTwoByTwo . harmonics

cosine = foldl (+) 0 . pairDifferences .
    take numberOfTerms . cosineTerms
link|improve this question

71% accept rate
Which cosine approximation is this? Is the input in degree or in radian? – pad Jan 18 at 7:16
This is radian. – Aaron Stainback Jan 18 at 18:49
feedback

2 Answers

up vote 4 down vote accepted

Pad's answer is good, but not polymorphic. In general, it's significantly less common to create such definitions in F# than in Haskell (and a bit of a pain). Here's one approach:

module NumericLiteralG =
    let inline FromZero() = LanguagePrimitives.GenericZero
    let inline FromOne() = LanguagePrimitives.GenericOne    

module ConstrainedOps =
    let inline (~-) (x:^a) : ^a = -x
    let inline (+) (x:^a) (y:^a) : ^a = x + y
    let inline (*) (x:^a) (y:^a) : ^a = x * y
    let inline (/) (x:^a) (y:^a) : ^a = x / y

open ConstrainedOps

let inline cosine n x = 
    let two = 1G + 1G
    Seq.unfold (fun (twoIp1, t) -> Some(t, (twoIp1+two, -t*x*x/(twoIp1*(twoIp1+1G))))) (1G,1G)
    |> Seq.take n
    |> Seq.sum
link|improve this answer
Couldn't you do this more easily without the NumericLiteralG and ConstrainedOps modules, by specifying the type of parameter x and the return type of cosine? I assume ConstrainedOps is used only to clean-up the signature, since math ops are already polymorphic. – Daniel Jan 18 at 19:40
@Daniel - yes, ConstrainedOps is only there to avoid lots of intermediate type variables (which are merely ugly but not harmful). I believe that annotating the arguments and return type would not be sufficient - you wuold also need to annotate two, twoIp1, etc., which clutters the code. Without NumericLiteralG you would need to plug GenericOne in a few places (GenericZero is unused and could be dropped). However, if you're going to be creating other polymorphic numeric code, then both of these modules can be reused and they make definitions much more readable. – kvb Jan 18 at 21:45
feedback

Here is my attempt in case you're lazy to read:

let harmonics x = 
    Seq.initInfinite(fun i -> - x*x/(float ((2*i+1)*(2*i+2))))

let cosineTerms = Seq.scan (*) 1.0 << harmonics

let cosine numberOfTerms = Seq.sum << Seq.take numberOfTerms << cosineTerms

I have a hard time finding out that you're calculating cosine in radian using Taylor series:

cosine(x) = 1 - x2/2! + x4/4! - x6/6! + ...

Let me describe what you're doing:

  1. Create an infinite sequence of x/k where k is an integer starting from 1.
  2. Split above sequence into chunks of two and scan by multiplying with a seed of 1 to have a sequence of x2/((2k-1)*(2k)) (with an exception of 1 at the beginning).

  3. Split the new sequence into blocks of two again to have differences in the form of x4k-4/((4k-4)!) - x4k-2/((4k-2)!) and sum all of them to get final result.

Because it's likely to be inefficient to split sequences in F# and takeThemTwoByTwo function is not essential, I chose another approach:

  1. Create an infinite sequence of - x2/((2k-1)*(2k)) where k is an integer starting from 1.
  2. Scan the sequence by multiplying with a seed of 1; we get a sequence of (-1)k * x2k/((2k)!).
  3. Sum all elements to obtain final result.

Above program is a direct translation of my description, succinct and simple. Computing cosine with numberOfTerms = 200000 iterations takes 0.15 seconds on my machine; I suppose it is efficient enough for your purpose.

Furthermore, a List version should be easy to translate from this one.

UPDATE:

Ok, my fault was to underestimate the polymorphism part of the question. I focused more on the performance part. Here is a polymorphic version (keeping closely to the float version):

let inline cosine n (x: ^a) = 
    let one: ^a = LanguagePrimitives.GenericOne
    Seq.initInfinite(fun i -> LanguagePrimitives.DivideByInt (- x*x) ((2*i+1)*(2*i+2)))
    |> Seq.scan (*) one
    |> Seq.take n
    |> Seq.sum

Seq.initInfinite is less powerful than Seq.unfold in @kvb 's answer. I keep it to make things simple because n is in int range anyway.

link|improve this answer
Hey thanks that is very nice and succinct :) – Aaron Stainback Jan 18 at 18:48
@Downvoter: care to comment? – pad Jan 18 at 19:58
It was me. The OP specifically notes the polymorphism of the Haskell function. Yours is not polymorphic. – Daniel Jan 18 at 20:06
Nice update. Down-vote removed. :-) – Daniel Jan 18 at 20:37
I don't know why my eyes skipped that polymorphism part :(. I have updated my answer with a polymorphism version. – pad Jan 18 at 20:38
feedback

Your Answer

 
or
required, but never shown

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