Tagged Questions

0
votes
3answers
61 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
99 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 …
1
vote
6answers
192 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 …
0
votes
2answers
58 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
3answers
413 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 …
3
votes
6answers
502 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 …
1
vote
1answer
238 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 …
4
votes
2answers
136 views

a more simple big adder in c#?

Hi, 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 …
2
votes
9answers
1k 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 …
6
votes
5answers
235 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 …
0
votes
2answers
462 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
vote
6answers
333 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 …
1
vote
6answers
913 views

How can I add very large numbers in C++? [closed]

How can I add very large numbers in C++?
1
vote
7answers
726 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 …
5
votes
13answers
4k views

How to implement big int in C++

Hi, 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 …

1 2 next
15 30 50 per page