Skip to content

Instantly share code, notes, and snippets.

@lildata
Created September 9, 2015 15:24
Show Gist options
  • Save lildata/793a7c0b4916afbcfc6b to your computer and use it in GitHub Desktop.
Save lildata/793a7c0b4916afbcfc6b to your computer and use it in GitHub Desktop.
(defnk net-present-value
"(net-present-value :rate 0.05 :cashflows [-1000 500 600 800])"
[:rate :cashflows]
(reduce + (map #(/ %1 (pow (inc rate) %2)) cashflows (range))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment