I want to factorise integers, for example

41748850938502584251

I want to factorise this using brute-force. Given the short length of this number this should be possible.

What's a suitable programming language which supports an integer data type that has arbitrary length?

link|improve this question

3  
Most languages will do this for you. This isn't sufficient reason to pick one over the other. Just pick one. – skaffman Jan 8 at 18:27
C and C++ can use the GMP arbitrary precision library, which is very good. Java has built-in arbitrary-precision integers. JavaScript does not. – Kerrek SB Jan 8 at 18:31
feedback

4 Answers

up vote 4 down vote accepted

Scheme has a featureful numeric tower that provides, among other things, arbitrary precision integers (see sec. 3.4 of R6RS which requires this of conforming implementations).

link|improve this answer
I have a small library of functions in Scheme that provides (prime n) to make a list of primes not exceeding n using the sieve of Eratosthenes, (prime? n) to determine if n is prime by the Miller/Rabin test, and (factors n) to find the factors of n using Pollard's rho algorithm. You can see it handle your factorization problem at http://ideone.com/x4tzl. – user448810 Jan 9 at 1:35
feedback

You could use Perl. Put

use bigint;

at the beginning of your program.

link|improve this answer
feedback

Java's BigInteger class handles very large numbers: http://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html

link|improve this answer
feedback

Haskell has the Integer data type for unlimited integers. Likewise Frege (it uses Javas big integers).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.