Skip to content

Instantly share code, notes, and snippets.

@bogdanteleaga
Created January 31, 2015 11:36
Show Gist options
  • Save bogdanteleaga/289dbffaa7b5a51e314d to your computer and use it in GitHub Desktop.
Save bogdanteleaga/289dbffaa7b5a51e314d to your computer and use it in GitHub Desktop.
(defn taylor-x [x n]
(->>
(iterate inc 1)
(reductions / 1.0)
(take n)
(map * (take n (iterate (partial * x) 1))
(apply +)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment