Top "Biginteger" questions

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

How do i compare values of BigInteger to be used as a condition in a loop?

I am trying to compare if the value of one BigInteger(base) is > the value of another BigInteger(prime) …

java biginteger
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, …

javascript floating-point decimal biginteger bignum
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 …

java biginteger square-root
JavaScript summing large integers

In JavaScript I would like to create the binary hash of a large boolean array (54 elements) with the following method: …

javascript biginteger
Unsigned long in Java

Currently, I am using signed values, -2^63 to 2^63-1. Now I need the same range (2 * 2^64), but with positive values only. …

java long-integer biginteger unsigned
How to convert BigInteger to BigDecimal?

Is there any way to convert a BigInteger into a BigDecimal? I know you can go from a BigDecimal to …

java biginteger bigdecimal
A good and basic implementation of BigInt class in C++

I'm looking for a good and basic BigInt class in C++, I find a lot of implementation but most of …

c++ biginteger bigint
java: how for loop work in the case of BigInteger

I want to take Input from the user as Big-Integer and manipulate it into a For loop BigInteger i; for(…

java biginteger
BigInteger to byte[]

I need to convert a Java BigInteger instance to its value in bytes. From the API, I get this method …

java byte biginteger
BigInteger.pow(BigInteger)?

I'm playing with numbers in Java, and want to see how big a number I can make. It is my …

java math biginteger pow