Tagged Questions

BigInteger is an arbitrary-precision arithmetic type in Java, C#, and other languages. It behaves like a signed integer whose size is limited only by available memory.

learn more… | top users | synonyms

35
votes
11answers
18k views

Big integers in C#

Currently I am borrowing java.math.BigInteger from the J# libraries as described here. Having never used a library for working with large integers before, this seems slow, on the order of 10 times ...
23
votes
4answers
2k views

The best cross platform (portable) arbitrary precision math library

Dear ninjas / hackers / wizards, keywords: bignum, bigint, GMP, MPFR, decNumber, BigInteger, BigDecimal, java.math.BigInteger, java.math.BigDecimal, System.Numerics.BigInteger I'm looking for a good ...
20
votes
2answers
352 views

JSON transfer of bigint: 12000000000002539 is converted to 12000000000002540?

I'm transferring raw data like [{id: 12000000000002539, Name: "Some Name"}] and I'm getting the object [{id: 12000000000002540, Name: "Some Name"}] after parsing, for now server side converting id ...
19
votes
7answers
3k views

Arbitrary-precision arithmetic Explanation

I'm trying to learn C and have come across the inability to work with REALLY big numbers (i.e., 100 digits, 1000 digits, etc.). I am aware that there exist libraries to do this, but I want to attempt ...
17
votes
14answers
19k views

How to implement big int in C++

I'd like to implement a big int class in C++ as a programming exercise. A class that can handle numbers bigger then a long int. I know that there are several open source implementations out there ...
15
votes
3answers
154 views

How to implement (fast) bigint division?

I'm currently making my own BigInt class, by splitting numbers by 7 digits. (i.e. in base 10,000,000) I implemented addition, subtraction, and multiplication, and now I'm implementing division and ...
12
votes
1answer
307 views

What is the best way to check for infinity in a Perl module?

In one of my modules, I have to deal with the concept of infinity. To date, I have been using 9**9**9 as positive infinity, and this seems to work well, is fast, and seems to be what perl's internals ...
12
votes
8answers
2k views
11
votes
1answer
154 views

Are there common implementation strategies for arbitrary-precision arithmetic which are valid regardless of a specific language?

I'm thinking about different ways to implement arbitrary-precision arithmetic (sometimes called Bignum, Integer or BigInt). It seems like the common idiom is to use an array for the storage of the ...
11
votes
7answers
5k views

How to generate a random BigInteger value in Java?

I need to generate arbitrarily large random integers in the range 0 (inclusive) to n (exclusive). My initial thought was to call nextDouble and multiply by n, but once n gets to be larger than 253, ...
10
votes
2answers
290 views

Hex to int C# with VERY big numbers

I have a 256 chars long string that contains a hex value: ...
10
votes
6answers
471 views

How to work on big integers that don't fit into any of language's data structures

I'm trying to solve a programming contest's preliminary problems and for 2 of the problems I have to calculate and print some very big integers(like 100!, 2^100). I also need a fast way to calculate ...
10
votes
3answers
201 views

Is it possible to conditionally “use bigint” with Perl?

I know I can conditionally use a module in Perl but what about the "pragmas"? My tests have shown that use bigint can be much slower than normal math in Perl and I only need it to handle 64-bit ...
9
votes
2answers
193 views

Handle arbitrary length integers in C++

Can someone tell me of a good C++ library for handling (doing operations etc...) with arbitrarily large numbers (it can be a library that handles arbitrary precision floats too, but handling integers ...
8
votes
5answers
1k views

How to add two numbers of any length in java?

How to add two numbers of any length in java? Say for example, in java long size is 64 bit. So the maximum range is -9223372036854775808 to 9223372036854775807. Am i right? So if we want to add a ...
8
votes
5answers
917 views

How do I generate a random n digit integer in Java using the BigInteger class?

I am unsure about how to generate a random n digit integer in Java using the BigInteger class.
8
votes
8answers
10k views

Big number in C++

Hey! I am trying to place a big number in a C++ variable. The number is 600851475143 I tried unsigned long long int but got an error saying it the constant was too big. I then tried a bigInt library ...
7
votes
4answers
297 views

C#: How Should I Handle Arithmetic with Huge Numbers?

I'm writing an app which involves arithmetic with humongous numbers, with very many digits. I've previously written a class that simplifies handling big numbers by defining them as strings and then ...
7
votes
10answers
835 views

What data-structure should I use to create my own “BigInteger” class?

As an optional assignment, I'm thinking about writing my own implementation of the BigInteger class, where I will provide my own methods for addition, subtraction, multiplication, etc. This will be ...
7
votes
2answers
2k views

Java BigInteger prime numbers

I a m trying to generate a random prime number of type BigInteger, that is between an min and max value which I supply. I am aware of the BigInteger.probablePrime(int bitlength, random), but I am not ...
6
votes
2answers
210 views

Java Mutable BigInteger Class

I am doing calculations with BigIntegers that uses a loop that calls multiply() about 100 billion times, and the new object creation from the BigInteger is making it very slow. I was hoping somebody ...
6
votes
2answers
157 views

What bignum libraries work with D?

I'm in need of a bignum library for representing large integers. What options do I have with the D programming language? Are there, for instance, GMP bindings? Update: I'm trying to use the inbuilt ...
6
votes
3answers
153 views

Division not crossing over bytes

im trying to do division on a uint128_t that is made up of 2 uint64_ts. weirdly enough, the function works for uint64_ts with only the lower value set and the upper value = 0. i dont get why heres ...
6
votes
3answers
2k views

Converting from Integer, to BigInteger

I was wondering if there was any way to convert a variable of type Integer, to BigInteger. I tried typecasting the Integer variable, but i get an error that says inconvertible type.
6
votes
3answers
1k views

Fastest 128 bit integer library

I am working on a CPU-heavy numerical computation app. Without going into many details, it's a computational math research project that involves computing a certain function f(x) for large integer x. ...
6
votes
1answer
197 views

How do BigNums implementations work?

I wanted to know how the BigInt and other such stuff are implemented. I tried to check out JAVA source code, but it was all Greek and Latin to me. Can you please explain me the algo in words - no ...
6
votes
3answers
1k views

Check if BigInteger is not a perfect square

I have a BigInteger value, let's say it is 282 and is inside the variable x. I now want to write a while loop that states: while b2 isn't a perfect square: a ← a + 1 b2 ← a*a - N endwhile ...
6
votes
4answers
1k views

Django BigInteger auto-increment field as primary key?

I'm currently building a project which involves a lot of collective intelligence. Every user visiting the web site gets created a unique profile and their data is later used to calculate best matches ...
6
votes
4answers
710 views

How to get the nth root of big numbers in C++?

Is there a C++ library that can take nth roots of big numbers (numbers than can't fit in an unsigned long long)?
6
votes
3answers
250 views

big integers with fixed length

I am looking for a library for big integers but with fixed width (128 or 256 would be enough). The reason is I don't want any allocation on the heap. I tried to make them myself but implementing ...
6
votes
4answers
5k views

Java: How to use BigInteger?

I have this piece of code, which is not working: BigInteger sum = BigInteger.valueOf(0); for(int i = 2; i < 5000; i++) { if (isPrim(i)) { sum.add(BigInteger.valueOf(i)); } } The ...
6
votes
2answers
511 views

Is BigInteger immutable or not?

In .NET 4 beta 2, there is the new Numerics namespace with struct BigInteger. The documentation states that it is an immutable type, as I would have expected. But I'm a little confused by the ...
6
votes
2answers
800 views

Bigint (bigbit) library

I'm looking for a c++ class/library that provides 1024 bit and bigger integers and bit operations like: - bit shifting, - bitwise OR/AND, - position first zero bit speed is crucial, so it would ...
5
votes
2answers
154 views

Java How to invert a BigInteger?

I need to invert a BigInteger. Let's say i have BigInteger x; and i need to calculate x.modPow(new BigInteger("-1"), p). I receive the following error: java.lang.ArithmeticException: ...
5
votes
1answer
155 views

OutOfMemoryError on BigInteger

I'm writing a polish notation calculator for BigIntegers (just *, ^ and !) and I'm getting an OutOfMemoryError on the line where I'm subtracting BigInteger.ONE to get the factorial to work, why? ...
5
votes
2answers
260 views

Unlimited-size base conversion?

Temporary note to the idiot who's chain-downvoting my questions Please stop. If you hold some kind of grudge against me I'd appreciate it if you'd tell me that instead of silently downvoting ...
5
votes
2answers
247 views

Securely generating a uniformly random BigInteger

I want to securely generate a random number in the range [0, N), where N is a parameter. However, System.Security.Cryptography.RandomNumberGenerator only provides a GetBytes() method to fill an array ...
5
votes
1answer
213 views

Number of digits of GMP integer

Is there an easy way to determine the number of digits a GMP integer has? I know you can determine it through a log, but I was wondering if there was something built into the library that I'm missing. ...
5
votes
4answers
820 views

How can I find the Square Root of a Java BigInteger?

Is there a library that will find the square root of a BigInteger? I want it computed offline - only once, and not inside any loop. So even computationally expensive solution is okay. I don't want to ...
5
votes
4answers
672 views

How to implement c=m^e mod n for enormous numbers?

I'm trying to figure out how to implement RSA crypto from scratch (just for the intellectual exercise), and i'm stuck on this point: For encryption, c = me mod n Now, e is normally 65537. m and n ...
5
votes
4answers
214 views

Is there is some mathematical “optimum” base that would speed up factorial calculation?

Is there is some mathematical "optimum" base that would speed up factorial calculation? Background: Just for fun, I'm implementing my own bignum library. (-: Is this my first mistake? :-). I'm ...
5
votes
4answers
450 views

Calculating the square of BigInteger

I'm using .NET 4's System.Numerics.BigInteger structure. I need to calculate the square (x2) of very large numbers - millions of decimal digits. If x is a BigInteger, What is the time complexity of: ...
5
votes
5answers
3k views

how to convert BigInteger to String in java

i converted a string to BigInteger as follows: Scanner sc=new Scanner(System.in); System.out.println("enter the message"); String msg=sc.next(); byte[] bytemsg=msg.getBytes(); ...
5
votes
2answers
1k views

How do you raise a Java BigInteger to the power of a BigInteger without doing modular arithmetic?

I'm doing some large integer computing, and I need to raise a BigInteger to the power of another BigInteger. The .pow() method does what I want, but takes an int value as an argument. The .modPow ...
5
votes
5answers
395 views

Does BigInteger ever overflows?

The API docs says All of the details in the Spec concerning overflow are ignored, as BigIntegers are made as large as necessary to accommodate the results of an operation. Does this implies ...
5
votes
3answers
546 views

What complexity are operations on Java 7's BigInteger?

What complexity are the methods multiply, divide and pow in BigInteger currently? There is no mention of the computational complexity in the documentation (nor anywhere else).
5
votes
5answers
4k views

`xrange(2**100)` -> OverflowError: long int too large to convert to int

xrange function doesn't work for large integers: >>> N = 10**100 >>> xrange(N) Traceback (most recent call last): ... OverflowError: long int too large to convert to int ...
5
votes
5answers
1k views

How can I disable scientific notation when working with very large numbers in Perl?

Consider the following: print 3 ** 333; #Yields 7.6098802313206e+158 My question is simple: How can I disable scientific notation when working with very large numbers? Basically, I'd like to see ...
5
votes
2answers
247 views

bignum in emacs/elisp

Does emacs have support for big numbers that don't fit in integers? If it does, how do I use them?
5
votes
7answers
2k views

Handling “Big” Integers in C#

How do I handle big integers in C#? I have a function that will give me the product of divisors: private static int GetDivisorProduct(int N, int product) { for (int i = 1; i < N; i++) ...

1 2 3 4 5 6