Tagged Questions
The bignum tag has no wiki summary.
20
votes
5answers
4k views
How can I represent a very large integer in .NET?
Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?
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 ...
12
votes
1answer
306 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 ...
11
votes
2answers
664 views
Large numbers in Pascal (Delphi)
Can I work with large numbers (more than 10^400) with built-in method in Delphi?
9
votes
3answers
3k views
Best bignum library to solve Project Euler problems in C++?
I am still a student, and I find project Euler very fun.
sometimes the question requires calculations that are bigger than primitive types. I know you can implement it but I am too lazy to do this,
...
9
votes
5answers
9k views
Working with large numbers in PHP
To use modular exponentiation as you would require when using the Fermat Primality Test with large numbers (100,000+), it calls for some very large calculations.
When I multiply two large numbers ...
7
votes
1answer
98 views
Can long integer routines benefit from SSE?
I'm still working on routines for arbitrary long integers in C++. So far, I have implemented addition/subtraction and multiplication for 64-bit Intel CPUs.
Everything works fine, but I wondered if I ...
7
votes
8answers
400 views
How does a 32-bit operating system perform the 2^56 modulo 7?
How does the system perform the 2^56 modulo 7, if it's 32 bits operating system in cryptography for example?
And how it stored in memory?
7
votes
1answer
403 views
How can I set the level of precision for Perl's bignum?
I'm trying to use the bignum module in Perl and want to set the precision. I know this can be done via a one liner as detailed on the module's CPAN page:
$ perl -Mbignum=p,-50 -le 'print sqrt(20)'
...
6
votes
7answers
861 views
How to Code a Solution To Deal With Large Numbers?
I'm doing some Project Euler problems and most of the time, the computations involve large numbers beyond int, float, double etc.
Firstly, I know that I should be looking for more efficient ways of ...
5
votes
1answer
164 views
Haskell function seems to be limiting integer length - i thought it used bignums?
i've got a short haskell function here that is supposed to convert "ABCDEF" into 0x41,0x42,0x43,0x44,0x45,0x46 (their ascii values), then multiply them so it becomes 0x4142,4344,4546 but it seems to ...
5
votes
2answers
387 views
How to implement long division for enormous numbers (bignums)
I'm trying to implement long division for bignums. I can't use a library like GMP unfortunately due to the limitations of embedded programming. Besides, i want the intellectual exercise of learning ...
5
votes
4answers
671 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
3answers
588 views
Bignum implementation that has efficient addition of small integers
I have been using python's native bignums for an algorithm and decided to try and speed it up by converting it to C++. When I used long longs, the C++ was about 100x faster than the python, but when I ...
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?
4
votes
1answer
87 views
In Perl, how do you detect if bignum support is loaded in versions before 5.9.4?
Perl's bignum bigint and bigrat pragmas helpfully contain an in_effect function that will detect if the pragma is loaded into a scope by probing the hints hash. However, this only works in version ...
4
votes
4answers
388 views
Basic math operations with HUGE numbers
By huge numbers, I mean if you took a gigabyte (instead of 4/8 bytes etc.) and tried to add/subtract/multiply/divide it by some other arbitrarily large (or small) number.
Adding and subtracting are ...
4
votes
2answers
179 views
Large integers in javascript (more the 2^53-1)
What is general principals to operate with large integers in javascript? Like in libraries for bigint? How i do it by myself?
4
votes
3answers
1k views
Is there a bignum library for JavaScript?
Is there a bignum library for JavaScript that I can include like
<script type="text/javascript" src="the_bignum_library.js"></script>
?
I think my users would prefer to enter numbers ...
4
votes
4answers
431 views
I would like to add 2 arbitrarily sized integers in C++. How can I go about doing this?
I would like to add 2 arbitrarily sized integers in C++. How can I go about doing this?
4
votes
6answers
1k views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to convert this number into ...
4
votes
4answers
965 views
Finding prime factors to large numbers using specially-crafted CPUs
My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that ...
4
votes
5answers
1k views
Most efficient implementation of a large number class
When doing calculations on very large numbers where integral data types such as double or int64 falls short, a separate class to handle such large numbers may be needed.
Does anyone care to offer ...
3
votes
2answers
423 views
Fast BigFloat unit for Delphi
I'm looking for a fast BigFloat unit, which can deal with addition, subtraction, multiplication and division (log would be fine but isn't necessary) and which has a precision of at least 100 decimal ...
3
votes
1answer
98 views
Arbitrary Precision Arithmetic (Bignum) for 16-bit processor
I'm developing an application for a 16-bit embedded device (80251 microcontroller), and I need arbitrary precision arithmetic. Does anyone know of a library that works for the 8051 or 80251?
GMP ...
3
votes
2answers
2k views
Bignum, Linear Algebra and Digital Signal Processing on iPhone OS (iOS 4)
I think I've found some gems in the iPhone OS (iOS 4).
I found that there're 128-bit, 256-bit, 512-bit and 1024-bit integer data types, provided by the Accelerate Framework. There're also Apple's ...
3
votes
4answers
651 views
Haskell Int and Integer
What in Haskell differs from Int ant Integer? In what documentation can i find such things?
Thank you
3
votes
2answers
196 views
How to serialize the GMP mpf type?
It seems that GMP provides only string serialization of the mpf (floating point) type:
mpf_get_str(), mpf_class::get_str()
The mpz (integer) type has an additional interface for raw bytes: ...
3
votes
2answers
301 views
How can I get digits out of a Perl bignum?
I have a really big number in Perl. I use "bignum". How can I extract single digits out of this big number. For example if I have a number like this and what to get the 3rd digit from the end:
...
3
votes
1answer
323 views
Why does JRuby not recognize BigNums while Ruby does?
If I type this big integer:
puts 9997836544.class.to_s
and compile with ruby 1.86, it reports expectedly:
BigNum
while JRuby (1.1.4 in Netbeans) reports surprisingly:
Fixnum
I thought Java ...
2
votes
2answers
217 views
Efficient Multiply/Divide of two 128-bit Integers on x86 (no 64-bit)
Compiler: MinGW/GCC
Issues: No GPL/LGPL code allowed (GMP or any bignum library for that matter, is overkill for this problem, as I already have the class implemented).
I have constructed my own ...
2
votes
1answer
35 views
Rails: Storing a 256 bit checksum as binary in database
I'm trying to store a SHA-2 256 bit checksum in a column:
create_table :checksums do |t|
t.binary :value, :null => false, :limit => 32
end
I'm storing in the value like so:
c = ...
2
votes
1answer
73 views
Converting a GMP integer to a base N integer
GMP allows to print a mpz_t up to base 62, but I want to represent a number into any base N, and for this I first need to generate an array of integers (let us say I will limit myself to base 2 ^ 64), ...
2
votes
1answer
202 views
128 bit Miller Rabin Primality test
I wanted to implement Miller Rabin Primality Test for large numbers. I wanted to know how to deal with such huge numbers in C++. Should I write any special function to store and process those large ...
2
votes
1answer
112 views
Factorial in bignum library
Ive tried to create my own implementation of a bignum library
I cant seem to get the factorial to work. If I ask it to solve 4!, it gives out 96. It multiplies 4 twice. similarly, 5! is 600, not 120. ...
2
votes
2answers
209 views
Restore a number from several its remainders (chinese remainder theorem)
I have a long integer number, but it is stored not in decimal form, but as set of remainders.
So, I have not the N number, but set of such remainders:
r_1 = N % 2147483743
r_2 = N % 2147483713
r_3 ...
2
votes
3answers
192 views
Generating a pseudo-natural phrase from a big integer in a reversible way
I have a large and "unique" integer (actually a SHA1 hash).
Note: While I'm talking here about SHA1 hashes, this is not a cryptography / security question! I'm not trying to break SHA1. Imagine a ...
2
votes
1answer
901 views
What does GCC __attribute__((mode(XX)) actually do?
This arose from a question earlier today on the subject of bignum libraries and gcc specific hacks to the c language. Specifically, these two declarations were used:
typedef unsigned int dword_t ...
2
votes
3answers
286 views
How to deal with big numbers in javascript
I'm looking for a Mathematical solution that deals with really (long, big, huge, storms) numbers. I haven't found anything yet, But I don't wanna think that this problem hasn't be solve at this time. ...
2
votes
5answers
503 views
Arbitrary precision arithmetic with Ruby
How the heck does Ruby do this? Does Jörg or anyone else know what's happening behind the scenes?
Unfortunately I don't know C very well so bignum.c is of little help to me. I was just kind of ...
2
votes
2answers
597 views
Multiplication algorithm for abritrary precision (bignum) integers
I'm writing a small bignum library for a homework project. I am to implement Karatsuba multiplication, but before that I would like to write a naive multiplication routine.
I'm following a guide ...
2
votes
1answer
159 views
Converting arbritrary size strings into arbritrary precision integers (bigints)
I'm trying to implement the Solovoy-Strassen primality test for arbritrary large integers. I will also be writing a bignum (cannot use 3rd party implementation as this is an academic project). I have ...
2
votes
4answers
308 views
What is a convenient base for a bignum library & primality testing algorithm?
I am to program the Solovay-Strassen primality test presented in the original paper on RSA.
Additionally I will need to write a small bignum library, and so when searching for a convenient ...
2
votes
2answers
238 views
Big float for shader-based mandelbrot explorer
I've managed to create a simple mandelbrot explorer using Open Gl, and the CGFX SDK provided by NVidia. It works well, but is currently float based, and therefore doesn't have much "depth" -- As the ...
2
votes
3answers
1k views
Big Number Subtraction in C
I just finished my exam in an introductory C course about 20 minutes ago. The first question on the exam caught me somewhat off guard, and involved finding the difference two large numbers.
The goal ...
2
votes
3answers
1k views
Sieve of Eratosthenes problem: handling really big numbers
I'm solving Sphere's Online Judge Prime Generator using the Sieve of Eratosthenes.
My code works for the test case provided. But.. as the problem clearly states:
The input begins with the number ...
2
votes
6answers
2k views
Convert really big number from binary to decimal and print it
I know how to convert binary to decimal. I know at least 2 methods: table and power ;-)
I want to convert binary to decimal and print this decimal. Moreover, I'm not interested in this `decimal'; I ...
2
votes
4answers
2k views
How can I sprintf a big number in Perl?
On a Windows 32-bit platform I have to read some numbers that, this was unexpected, can have values as big as 99,999,999,999, but no more. Trying to sprintf("%011d", $myNum) them outputs an overflow: ...