Top "Biginteger" questions

BigInteger is an arbitrary-precision arithmetic type in Java, C#, and other languages.

How to generate a "big" random number in Python?

How can I generate a big (more than 64 bits) random integer in Python?

python random biginteger
StackOverflowError computing factorial of a BigInteger?

I am trying to write a Java program to calculate factorial of a large number. It seems BigInteger is not …

java algorithm stack-overflow biginteger factorial
How can I generate a random BigInteger within a certain range?

Consider this method that works well: public static bool mightBePrime(int N) { BigInteger a = rGen.Next (1, N-1); return modExp (a, …

c# .net random biginteger system.numerics
Logarithm for BigInteger

I have a BigInteger number, for example beyond 264. Now i want to calculate the logarithm of that BigInteger number, but …

java math biginteger logarithm
Is there a BigInteger class in PHP?

Is there a BigInteger class in PHP? If so, how do I access it or use it?

php biginteger
BigInteger: count the number of decimal digits in a scalable method

I need the count the number of decimal digits of a BigInteger. For example: 99 returns 2 1234 returns 4 9999 returns 4 12345678901234567890 returns 20 I need …

java biginteger
Should I use a big INT or regular INT in MySQL to store a timestamp?

Should I be using a big integer or a regular integer in MySQL to store a timerstamp in? I plan …

mysql integer biginteger
How much space does BigInteger use?

How many bytes of memory does a BigInteger object use in general ?

java biginteger
BigInteger.toString method is deleting leading 0

I am trying to generate MD5 sum using MessageDigest. And i am having following code. byte[] md5sum = digest.digest(); …

java tostring biginteger
Decimals and commas when entering a number into a Ruby on Rails form

What's the best Ruby/Rails way to allow users to use decimals or commas when entering a number into a …

ruby-on-rails ruby-on-rails-3 decimal biginteger comma