Tagged Questions
The largenumber tag has no wiki summary.
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 ...
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 ...
7
votes
5answers
1k views
Algorithm for dividing very large numbers
I need to write an algorithm(I cannot use any 3rd party library, because this is an assignment) to divide(integer division, floating parts are not important) very large numbers like 100 - 1000 ...
7
votes
5answers
382 views
Types for large numbers
I am working on an app that will need to handle very large numbers.
I checked out a few available LargeNumber classes and have found a few that I am happy with. I have a class for large integers and ...
6
votes
5answers
566 views
Which data type to use for a very large number in c++?
I have to store the number 600851475143 in my program. I tried to store it in long long int variable and long double as well but on compiling it shows the error "integer constant is too large for ...
6
votes
4answers
487 views
Python: how so fast?
The period of the Mersenne Twister used in the module random is (I am told) 2**19937 - 1. As a binary number, that is 19937 '1's in a row (if I'm not mistaken). Python converts it to decimal pretty ...
6
votes
7answers
862 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 ...
6
votes
2answers
934 views
How to round/ceil/floor a bcmath number in PHP?
Is there any library function for this purpose, so I don't do it by hand and risk ending in TDWTF?
echo ceil(31497230840470473074370324734723042.6);
// Expected result
...
5
votes
5answers
1k views
How do you do maths (or math) with numbers bigger than MaxValue in C#?
I want to be able to process arbitrarily large numbers in C#.
I can live with just integers.
Are there established algorithms for this kind of thing?
Or is there a good 3rd-party library?
I ...
4
votes
3answers
131 views
Fast multiplication of very large numbers in perl
I have 50,000 numbers (that could range from 0 to 50,000). And I need (product of these numbers) MOD 1000000007. The following code is so trivial, there should be other ways. Heard about "Divide and ...
4
votes
2answers
371 views
a more simple big adder in c#?
I just had the task in school to write a big adder. Meaning a method that can put very large numbers together.
We had 10 minutes and I did complete it on time. The teacher approved it.
I am not too ...
4
votes
7answers
4k views
working with incredibly large numbers in .NET
I'm trying to work through the problems on projecteuler.net but I keep running into a couple of problems.
The first is a question of storing large quanities of elements in a List<t>. I keep ...
3
votes
2answers
91 views
Generating very large random numbers java
How can we generate very large random number in java? I am talking something like 10000 digits? I know we have to use BigInteger but how can we do this? What is the most efficent way of doing ...
3
votes
6answers
267 views
Convert a large 2^63 decimal to binary
I need to convert a large decimal to binary how would I go about doing this? Decimal in question is this 3324679375210329505
3
votes
2answers
113 views
Best way to deal with very large Long numbers in Ajax?
Javascript represents all numbers as double-precision floating-point. This means it loses precision when dealing with numbers at the very highest end of the 64 bit Java Long datatype -- anything ...
3
votes
6answers
1k views
convert astronomically large numbers into human readable form in C/C++
My program prints out HUGE numbers - like 100363443, up to a trillion -- and it sort of hard to read them, so I would like to print any number in easy to read form.
right now I use
printf ...
3
votes
2answers
830 views
What is the logic behind Fourier division algorithm?
from Wikipedia: fourier division.
Here is a screenshot of the same:
(view in full-resolution)
What is the logic behind this algorithm?
I know it can be used to divide very large numbers, but how ...
3
votes
9answers
12k views
Inputting large numbers in c++?
What's the best way to handle large numeric inputs in c++ (eg 10^100)?
For algorithms I usually switch over to ruby and I sometimes use strings.
Any other good methods?
2
votes
2answers
74 views
Generating huge lists of numbers
I'm trying to generate a huge list of sequenced numbers with 0 padding
for example:
00000000
00000001
00000002
.
.
99999997
99999998
99999999
im trying something like:
for i in $(seq ...
2
votes
1answer
75 views
Formatting large integers in Python
I am dealing with large integral numbers in my script and I want to format the numbers into strings using the 'K', 'M' and 'B' postfix chars to denote scale of thousands, millions or billionsб ...
2
votes
3answers
172 views
Optimise arithmetic operations on very large numbers
I want to compute the function H(n)
where
H(0)=0;
H(i)=H(i-1)×A+Ci mod B;
10<=A,B<=10^15;
C is an array of n elements
But it is taking too much time...any better way of doing this..Please ...
2
votes
6answers
1k views
Calculating variance with large numbers
I haven't really used variance calculation that much, and I don't know quite what to expect. Actually I'm not too good with math at all.
I have a an array of 1000000 random numeric values in the ...
2
votes
9answers
4k views
How to divide big numbers?
I have a big number (integer, unsigned) stored in 2 variables (as you can see, the high and low part of number):
unsigned long long int high;
unsigned long long int low;
I know how to add or ...
2
votes
6answers
3k views
1
vote
3answers
138 views
Why python isn't handling very large numbers in all areas?
I am doing a puzzle where I have to deal with numbers of order 10^18. However, I find python isn't able to handle very large numbers in all areas.
To be specific, if we assign a = 1000000000000000000 ...
1
vote
3answers
76 views
very large A divide at a very large B [closed]
I have already made a function of multiplication of long numbers, addition of long numbers, subtraction of long numbers and division of long numbers. But division takes a very long time, how it could ...
1
vote
4answers
217 views
Need help implementing Karatsuba algorithm in C++
First a little background:
- I'm a first time poster, a student in university (not in programming).
- This is not a homework question, I'm only doing this for fun.
- My programming experience consists ...
1
vote
4answers
101 views
Division of large numbers in strings
I wrote a program to divide large numbers using strings in C++. That is a string is used to store each digit of the number. I used continuous subtraction to get the remainder and quotient.
For ex:
...
1
vote
4answers
123 views
Handling large numbers
I have this problem:
A positive integer is called a palindrome if its representation in the decimal system is the same when read from left to right and from right to left. For a given positive ...
1
vote
2answers
161 views
Fastest programming language for computing large numbers?
If I wanted to compute numbers with hundreds of millions of digits (positive integers), which programming language would be best suited for that?
Currently I'm using python and the script is running ...
1
vote
0answers
80 views
How to efficiently compute Erlang C for numbers too large for float double
I need to calculate the Erlang C function for some contact center software. A picture of the function and a brief discussion is here: http://en.wikipedia.org/wiki/Erlang_%28unit%29
I cobbled together ...
1
vote
3answers
233 views
Efficient way to compare VERY LARGE NUMBER OF VALUES php
hi
i am to compare very large number of values, i used arrays, but run out of memory. the values in arrays are around 5000000, and for every values again a loop of 5000000 will execute. in short ...
1
vote
1answer
167 views
converting a large number into hexatridecimal
I want to turn a large number, actually the present time in seconds counted from the unix epoch time, into a hexatridecimal string.
I hacked some code a long time ago, which (I think) worked on an ...
1
vote
3answers
405 views
Java - Can't make ProjectEuler 3 Work for a very big number (600851475143)
Resolution:
It turns out there is (probably) "nothing wrong" with the code itself; it is just inefficient. If my math is correct, If I leave it running it will be done by Friday, October 14, ...
1
vote
2answers
303 views
Extremely Large Integers in PHP [closed]
Possible Duplicate:
Working with large numbers in PHP.
I run a completely useless Facebook app. I'm having a problem with PHP's support for integers. Basically, users give themselves ...
1
vote
3answers
351 views
Long ints in Fortran
I'm trying to work with large numbers (~10^14), and I need to be able to store them and iterate over loops of that length. ie.
n=SOME_BIG_NUMBER
do i=n,1,-1
I've tried the usual star notation, ...
1
vote
3answers
4k views
How to calculate “modular multiplicative inverse” when the denominator is not co-prime with m?
I need to calculate (a/b) mod m where a and b are very large numbers.
What I am trying to do is to calculate (a mod m) * (x mod m), where x is the modular inverse of b.
I tried using Extended ...
1
vote
6answers
532 views
Which libraries for handling very large integers in languages without native support?
Various questions (like this, and this) ask about how to handle integer values exceeding the native types of a particular language.
Please reply here, with one response per language, recommendations ...
0
votes
1answer
70 views
c++ GMP pow() function
I am trying to do pow(2,500) in C++. But I think long long is not enough.
Someone told me I can use gmp.h. But I couldn't find out how can I do a pow(2,500) in gmp.
Can you please help? thanks.
0
votes
2answers
64 views
What common Math errors should I be aware of when using .NET on x32 and x64 platforms?
What should I keep in mind when performing calculations using .NET?
For example, I know a little about floating point errors, but am unfamilliar with this forum post on CodeProject. What do I need ...
0
votes
5answers
283 views
Efficient way to manipulate large powers of two
The most efficient way to code powers of two is by bit shifting of integers.
1 << n gives me 2^n
However, if I have a number that is larger than the largest value allowed in an int or a long, ...
0
votes
3answers
2k views
Handling numbers larger than Long in VBA
I am Currently trying to write some code in VBA to solve a problem from Project Euler. I have been trying to answer a question that requires you to find primes that can be divided into a number that ...
0
votes
5answers
129 views
More efficient method for this calculation?
a = 218500000000
s = 6
f = 2
k = 49
d = k + f + s
r = a
i = 0
while (r >= d):
r = r - d
#print ('r = ',r)
i = i+1
#print ('i = ',i)
print (i)
I think it does what I expect it to, but ...
0
votes
2answers
249 views
PHP integer exponentiation (super large numbers)
Using PHP I want to do millions of 2^n exponentiation but so far I only got up to n^1023 before PHP printed INF.
Any ideas?
0
votes
2answers
1k views
How do I multiply (and divide) BCD numbers by 10^x
I have a large (12 digit) BCD number, encoded in an array of 6 bytes - each nibble is one BCD digit. I need to multiply it by 10^x, where x can be positive or negative.
I know it can be done by ...
-1
votes
5answers
185 views
How to convert large integers to base 2^32?
First off, I'm doing this for myself so please don't suggest "use GMP / xint / bignum" (if it even applies).
I'm looking for a way to convert large integers (say, OVER 9000 digits) into a int32 array ...
-1
votes
1answer
147 views
Comparing large numbers of values using php arrays
I have to compare two very large number of values, for that I put them in arrays but it didn't work. Below is the code I use. Is this the most efficient way? I have set the time and memory to ...