Hey All,

This is more than likely a newbie question, so my apologies if this is not 
directly clojure related.

I'm not sure if this is a Java or Clojure specific issue, my guess is both. 
I'm trying to do some probability calculations with both very large and 
very small numbers. The function I'm using is as follows:
 

> (defn probability-of-collision [num-unique, num-generated]
>
>   (let [exponent (.divide num-generated (.multiply 2M num-unique))]
>
>     (.subtract 1M (.divide 1M (.pow (bigdec java.lang.Math/E) exponent)))))
>
>
I would like to compute the answer for the following numbers, but only 
receive zero back:

user=> (probability-of-collision (.pow 2M 132) (.pow 10M 20))

0M


I have tried using with-precision and several other approaches but cannot 
figure out how to get the correct value out. I was under the impression 
that BigDecimals support arbitrary precision arithmetic but perhaps I'm 
misunderstanding something? 
 

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to